From e024dfb2e18d8150c5f30d39818bd319b896a343 Mon Sep 17 00:00:00 2001 From: Igor Raits Date: Fri, 28 Aug 2020 06:58:07 +0000 Subject: [PATCH 01/11] Added the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9671c50 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# ghc-data-fix + +The ghc-data-fix package From 5e8455eb41538e8cd7b1eb56389ff77aaed98868 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 29 Aug 2020 11:53:50 +0800 Subject: [PATCH 02/11] import #1871643 --- .gitignore | 1 + data-fix-0.2.1.cabal | 35 ++++++++++++++ ghc-data-fix.spec | 107 +++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 144 insertions(+) create mode 100644 .gitignore create mode 100644 data-fix-0.2.1.cabal create mode 100644 ghc-data-fix.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..42315d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/data-fix-0.2.1.tar.gz diff --git a/data-fix-0.2.1.cabal b/data-fix-0.2.1.cabal new file mode 100644 index 0000000..4ab97c0 --- /dev/null +++ b/data-fix-0.2.1.cabal @@ -0,0 +1,35 @@ +Name: data-fix +Version: 0.2.1 +x-revision: 1 +Cabal-Version: >= 1.10 +License: BSD3 +License-file: LICENSE +Author: Anton Kholomiov +Maintainer: +Category: Data +Synopsis: Fixpoint data types +Build-Type: Simple +Description: + Fixpoint types and recursion schemes. If you define your AST as + fixpoint type, you get fold and unfold operations for free. + . + Thanks for contribution to: Matej Kollar, Herbert Valerio Riedel + +Stability: Experimental + +Homepage: https://github.com/anton-k/data-fix +Bug-Reports: https://github.com/anton-k/data-fix/issues + +Source-repository head + Type: git + Location: https://github.com/anton-k/data-fix + +Library + Default-Language: Haskell2010 + Build-depends: base >= 4.8, base < 5 + Hs-source-dirs: src/ + + ghc-options: -Wall + + Exposed-modules: + Data.Fix diff --git a/ghc-data-fix.spec b/ghc-data-fix.spec new file mode 100644 index 0000000..94ccde6 --- /dev/null +++ b/ghc-data-fix.spec @@ -0,0 +1,107 @@ +# generated by cabal-rpm-2.0.6 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ + +%global pkg_name data-fix +%global pkgver %{pkg_name}-%{version} + +Name: ghc-%{pkg_name} +Version: 0.2.1 +Release: 1%{?dist} +Summary: Fixpoint data types + +License: BSD +Url: https://hackage.haskell.org/package/%{pkg_name} +# Begin cabal-rpm sources: +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal +# End cabal-rpm sources + +# Begin cabal-rpm deps: +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-base-prof +# End cabal-rpm deps + +%description +Fixpoint types and recursion schemes. If you define your AST as fixpoint type, +you get fold and unfold operations for free. + +Thanks for contribution to: Matej Kollar, Herbert Valerio Riedel. + + +%package devel +Summary: Haskell %{pkg_name} library development files +Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-static%{?_isa} = %{version}-%{release} +%if %{defined ghc_version} +Requires: ghc-compiler = %{ghc_version} +%endif +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch + +%description doc +This package provides the Haskell %{pkg_name} library documentation. +%endif + + +%if %{with ghc_prof} +%package prof +Summary: Haskell %{pkg_name} profiling library +Requires: %{name}-devel%{?_isa} = %{version}-%{release} +Supplements: (%{name}-devel and ghc-prof) + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + +%prep +# Begin cabal-rpm setup: +%setup -q -n %{pkgver} +cp -bp %{SOURCE1} %{pkg_name}.cabal +# End cabal-rpm setup + + +%build +# Begin cabal-rpm build: +%ghc_lib_build +# End cabal-rpm build + + +%install +# Begin cabal-rpm install +%ghc_lib_install +# End cabal-rpm install + + +%files -f %{name}.files +# Begin cabal-rpm files: +%license LICENSE +# End cabal-rpm files + + +%files devel -f %{name}-devel.files + + +%if %{with haddock} +%files doc -f %{name}-doc.files +%license LICENSE +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + +%changelog +* Sun Aug 23 2020 Jens Petersen - 0.2.1-1 +- spec file generated by cabal-rpm-2.0.6 diff --git a/sources b/sources new file mode 100644 index 0000000..aeb0ed3 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (data-fix-0.2.1.tar.gz) = 5dd025f2f5688e9538ad8c6a938b2314efb2da5bec7fe5bf7fa8015713f38d490fd92ad08f4f09cac6d6c6a8fb69d663935aeb3b1853e5a04aa71a0f11743fb8 From 6ca8a99dc574029af6f494a000c7e1173273cb7d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 07:05:08 +0000 Subject: [PATCH 03/11] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-data-fix.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-data-fix.spec b/ghc-data-fix.spec index 94ccde6..a78a1e3 100644 --- a/ghc-data-fix.spec +++ b/ghc-data-fix.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fixpoint data types License: BSD @@ -103,5 +103,8 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sun Aug 23 2020 Jens Petersen - 0.2.1-1 - spec file generated by cabal-rpm-2.0.6 From 781a1e93de965e402f6ce6a7f98bfbc97beba00a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 00:32:33 +0000 Subject: [PATCH 04/11] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-data-fix.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-data-fix.spec b/ghc-data-fix.spec index a78a1e3..ab4190c 100644 --- a/ghc-data-fix.spec +++ b/ghc-data-fix.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fixpoint data types License: BSD @@ -103,6 +103,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 5e5fc410f7194a97c477c656cb82ef4409741a3e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 28 Jan 2021 15:45:14 +0800 Subject: [PATCH 05/11] update to 0.3.0 --- .gitignore | 1 + data-fix-0.2.1.cabal | 35 ----------------------------------- ghc-data-fix.spec | 18 +++++++++++------- sources | 2 +- 4 files changed, 13 insertions(+), 43 deletions(-) delete mode 100644 data-fix-0.2.1.cabal diff --git a/.gitignore b/.gitignore index 42315d7..421ca3b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /data-fix-0.2.1.tar.gz +/data-fix-0.3.0.tar.gz diff --git a/data-fix-0.2.1.cabal b/data-fix-0.2.1.cabal deleted file mode 100644 index 4ab97c0..0000000 --- a/data-fix-0.2.1.cabal +++ /dev/null @@ -1,35 +0,0 @@ -Name: data-fix -Version: 0.2.1 -x-revision: 1 -Cabal-Version: >= 1.10 -License: BSD3 -License-file: LICENSE -Author: Anton Kholomiov -Maintainer: -Category: Data -Synopsis: Fixpoint data types -Build-Type: Simple -Description: - Fixpoint types and recursion schemes. If you define your AST as - fixpoint type, you get fold and unfold operations for free. - . - Thanks for contribution to: Matej Kollar, Herbert Valerio Riedel - -Stability: Experimental - -Homepage: https://github.com/anton-k/data-fix -Bug-Reports: https://github.com/anton-k/data-fix/issues - -Source-repository head - Type: git - Location: https://github.com/anton-k/data-fix - -Library - Default-Language: Haskell2010 - Build-depends: base >= 4.8, base < 5 - Hs-source-dirs: src/ - - ghc-options: -Wall - - Exposed-modules: - Data.Fix diff --git a/ghc-data-fix.spec b/ghc-data-fix.spec index ab4190c..1f3ddd2 100644 --- a/ghc-data-fix.spec +++ b/ghc-data-fix.spec @@ -5,21 +5,22 @@ %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 0.2.1 -Release: 3%{?dist} +Version: 0.3.0 +Release: 1%{?dist} Summary: Fixpoint data types License: BSD Url: https://hackage.haskell.org/package/%{pkg_name} # Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz -Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal # End cabal-rpm sources # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-base-prof +BuildRequires: ghc-deepseq-prof +BuildRequires: ghc-hashable-prof # End cabal-rpm deps %description @@ -66,7 +67,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup @@ -89,6 +89,7 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %files devel -f %{name}-devel.files +%doc CHANGELOG.md %if %{with haddock} @@ -103,11 +104,14 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Aug 5 2021 Jens Petersen - 0.3.0-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 0.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Tue Jan 26 2021 Fedora Release Engineering - 0.2.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild +* Thu Jan 28 2021 Jens Petersen - 0.3.0-1 +- update to 0.3.0 +>>>>>>> d8db6b1 (update to 0.3.0) * Sun Aug 23 2020 Jens Petersen - 0.2.1-1 - spec file generated by cabal-rpm-2.0.6 diff --git a/sources b/sources index aeb0ed3..2e081a1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (data-fix-0.2.1.tar.gz) = 5dd025f2f5688e9538ad8c6a938b2314efb2da5bec7fe5bf7fa8015713f38d490fd92ad08f4f09cac6d6c6a8fb69d663935aeb3b1853e5a04aa71a0f11743fb8 +SHA512 (data-fix-0.3.0.tar.gz) = 2fa2458a765ce0cf08d8907d523d744a69d0865260c2078dd5cfd5b0d3f1420a9bc2b9bc4795e0864884ae869a730233a268be6a1d17bc50a737a4704a4f06f6 From 17f0e6179ca6fdd112d93d78b713dc4be5af725d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 00:30:10 +0800 Subject: [PATCH 06/11] refresh to cabal-rpm-2.0.9 --- ghc-data-fix.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc-data-fix.spec b/ghc-data-fix.spec index 1f3ddd2..1aea708 100644 --- a/ghc-data-fix.spec +++ b/ghc-data-fix.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-2.0.6 +# generated by cabal-rpm-2.0.9 # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name data-fix @@ -47,6 +47,7 @@ This package provides the Haskell %{pkg_name} library development files. %package doc Summary: Haskell %{pkg_name} library documentation BuildArch: noarch +Requires: ghc-filesystem %description doc This package provides the Haskell %{pkg_name} library documentation. From 70aa74bf0b5d4b715a50df2a251520c5cbb991c9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 5 Aug 2021 10:36:32 +0800 Subject: [PATCH 07/11] update to 0.3.1 --- .gitignore | 1 + ghc-data-fix.spec | 13 ++++++++----- sources | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 421ca3b..0e1629f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /data-fix-0.2.1.tar.gz /data-fix-0.3.0.tar.gz +/data-fix-0.3.1.tar.gz diff --git a/ghc-data-fix.spec b/ghc-data-fix.spec index 1aea708..7abe5cb 100644 --- a/ghc-data-fix.spec +++ b/ghc-data-fix.spec @@ -5,7 +5,7 @@ %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 0.3.0 +Version: 0.3.1 Release: 1%{?dist} Summary: Fixpoint data types @@ -105,14 +105,17 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Aug 5 2021 Jens Petersen - 0.3.1-1 +- update to 0.3.1 + * Thu Aug 5 2021 Jens Petersen - 0.3.0-1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild +- update to 0.3.0 * Thu Jul 22 2021 Fedora Release Engineering - 0.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild -* Thu Jan 28 2021 Jens Petersen - 0.3.0-1 -- update to 0.3.0 ->>>>>>> d8db6b1 (update to 0.3.0) + +* Tue Jan 26 2021 Fedora Release Engineering - 0.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Sun Aug 23 2020 Jens Petersen - 0.2.1-1 - spec file generated by cabal-rpm-2.0.6 diff --git a/sources b/sources index 2e081a1..4657971 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (data-fix-0.3.0.tar.gz) = 2fa2458a765ce0cf08d8907d523d744a69d0865260c2078dd5cfd5b0d3f1420a9bc2b9bc4795e0864884ae869a730233a268be6a1d17bc50a737a4704a4f06f6 +SHA512 (data-fix-0.3.1.tar.gz) = 21eb328137a6e4d52a79c73c351e5a89f04747a5ed8188664408ce0aa544a57ab731e267d1d408bbac047ec6a2e9f73232e42e6aa45fcebf7204b6349eec9143 From 7e6c6fdb9c1185873d75239f09132ff1cbb05526 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 5 Aug 2021 14:06:05 +0800 Subject: [PATCH 08/11] update to 0.3.2 --- .gitignore | 1 + ghc-data-fix.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0e1629f..06bf088 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /data-fix-0.2.1.tar.gz /data-fix-0.3.0.tar.gz /data-fix-0.3.1.tar.gz +/data-fix-0.3.2.tar.gz diff --git a/ghc-data-fix.spec b/ghc-data-fix.spec index 7abe5cb..0002d1f 100644 --- a/ghc-data-fix.spec +++ b/ghc-data-fix.spec @@ -5,7 +5,7 @@ %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 0.3.1 +Version: 0.3.2 Release: 1%{?dist} Summary: Fixpoint data types @@ -105,6 +105,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Aug 05 2021 Jens Petersen - 0.3.2-1 +- update to 0.3.2 + * Thu Aug 5 2021 Jens Petersen - 0.3.1-1 - update to 0.3.1 diff --git a/sources b/sources index 4657971..a3f13a9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (data-fix-0.3.1.tar.gz) = 21eb328137a6e4d52a79c73c351e5a89f04747a5ed8188664408ce0aa544a57ab731e267d1d408bbac047ec6a2e9f73232e42e6aa45fcebf7204b6349eec9143 +SHA512 (data-fix-0.3.2.tar.gz) = 70b0c15522ea1fa623397bd399d83cc0921736012e6daaad21a9940ec9f447373f7e0e3915369127c7c54def7cb1d066c4641e676fa5f444f3d5dd761c258b63 From 96c4273f20891723c20119d2349a98cb67fc5d6f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 04:45:15 +0000 Subject: [PATCH 09/11] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-data-fix.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-data-fix.spec b/ghc-data-fix.spec index 0002d1f..a3c9781 100644 --- a/ghc-data-fix.spec +++ b/ghc-data-fix.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fixpoint data types License: BSD @@ -105,6 +105,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Aug 05 2021 Jens Petersen - 0.3.2-1 - update to 0.3.2 From a3ccc3da3be81c98c96f82aa7736d09392d719e2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 18 Jun 2022 00:21:41 +0800 Subject: [PATCH 10/11] revise .cabal --- data-fix-0.3.2.cabal | 71 ++++++++++++++++++++++++++++++++++++++++++++ ghc-data-fix.spec | 2 ++ 2 files changed, 73 insertions(+) create mode 100644 data-fix-0.3.2.cabal diff --git a/data-fix-0.3.2.cabal b/data-fix-0.3.2.cabal new file mode 100644 index 0000000..6f30339 --- /dev/null +++ b/data-fix-0.3.2.cabal @@ -0,0 +1,71 @@ +Name: data-fix +Version: 0.3.2 +x-revision: 2 +Cabal-Version: >= 1.10 +License: BSD3 +License-file: LICENSE +Author: Anton Kholomiov, Edward Kmett, Oleg Grenrus +Maintainer: +Category: Data +Synopsis: Fixpoint data types +Build-Type: Simple +Description: + Fixpoint types and recursion schemes. If you define your AST as + fixpoint type, you get fold and unfold operations for free. + . + Thanks for contribution to: Matej Kollar, Herbert Valerio Riedel + +Stability: Experimental + +Homepage: https://github.com/spell-music/data-fix +Bug-Reports: https://github.com/spell-music/data-fix/issues + +Tested-With: + GHC ==7.2.2 + || ==7.4.2 + || ==7.6.3 + || ==7.8.4 + || ==7.10.3 + || ==8.0.2 + || ==8.2.2 + || ==8.4.4 + || ==8.6.5 + || ==8.8.4 + || ==8.10.4 + || ==9.0.1 + || ==9.2.1 + +extra-source-files: + CHANGELOG.md + +Source-repository head + Type: git + Location: https://github.com/spell-music/data-fix + +library + hs-source-dirs: src + default-language: Haskell2010 + ghc-options: -Wall + exposed-modules: Data.Fix + + if impl(ghc >=8.0) + ghc-options: -Wno-trustworthy-safe + + if impl(ghc >=8.4) + ghc-options: + -Wincomplete-uni-patterns -Wincomplete-record-updates + -Wredundant-constraints -Widentities -Wmissing-export-lists + + build-depends: + base >=4.4 && <4.17 + , deepseq >=1.3.0.0 && <1.5 + , hashable >=1.2.7.0 && <1.5 + + if impl(ghc <7.6) + -- for GHC.Generics + build-depends: ghc-prim + + if !impl(ghc >=8.0) + build-depends: + transformers >=0.3 && <0.7 + , transformers-compat >=0.6.5 && <0.8 diff --git a/ghc-data-fix.spec b/ghc-data-fix.spec index a3c9781..98fad85 100644 --- a/ghc-data-fix.spec +++ b/ghc-data-fix.spec @@ -13,6 +13,7 @@ License: BSD Url: https://hackage.haskell.org/package/%{pkg_name} # Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal # End cabal-rpm sources # Begin cabal-rpm deps: @@ -68,6 +69,7 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} +cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup From 2b50cfe427fe4dec9d67aee1aaa2dcf33ebb2005 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 21:35:18 +0300 Subject: [PATCH 11/11] Remove unnecessary files --- README.md | 3 --- sources | 1 - 2 files changed, 4 deletions(-) delete mode 100644 README.md delete mode 100644 sources diff --git a/README.md b/README.md deleted file mode 100644 index 9671c50..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# ghc-data-fix - -The ghc-data-fix package diff --git a/sources b/sources deleted file mode 100644 index a3f13a9..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (data-fix-0.3.2.tar.gz) = 70b0c15522ea1fa623397bd399d83cc0921736012e6daaad21a9940ec9f447373f7e0e3915369127c7c54def7cb1d066c4641e676fa5f444f3d5dd761c258b63