Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
package-list.hs: ignore GHC 7.4.2 packages
Browse files Browse the repository at this point in the history
  • Loading branch information
peti committed Apr 20, 2012
1 parent efcb548 commit 627e590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package-list.hs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ getHaskellPackageList = do
return [ p | Just p <- map parseHaskellPackageName allPkgs ]

selectReleaseVersions :: Pkgset -> Pkgset
selectReleaseVersions pkgs = [ p | p@(_,_,attr) <- pkgs, not (attr =~ "haskellPackages_ghc(6104|6123|741|704_profiling|HEAD)") ]
selectReleaseVersions pkgs = [ p | p@(_,_,attr) <- pkgs, not (attr =~ "haskellPackages_ghc(6104|6123|741|704_profiling|742|HEAD)") ]

selectLatestVersions :: Pkgset -> Pkgset
selectLatestVersions = nubBy (\x y -> comparePkgByName x y == EQ) . sortBy comparePkgByVersion
Expand Down

0 comments on commit 627e590

Please sign in to comment.