From f745ad64cf658b79f1e5d5753798159b6d826819 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 13 Nov 2010 16:49:04 +0000 Subject: [PATCH 01/76] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 28af253a901a060848c786f9cbc7ec174103e41e Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 13 Nov 2010 11:58:30 -0500 Subject: [PATCH 02/76] Initial build --- .gitignore | 1 + ghc-cmdargs.spec | 88 ++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 90 insertions(+) create mode 100644 ghc-cmdargs.spec diff --git a/.gitignore b/.gitignore index e69de29..70267c1 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/cmdargs-0.6.3.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec new file mode 100644 index 0000000..d3d3064 --- /dev/null +++ b/ghc-cmdargs.spec @@ -0,0 +1,88 @@ +%global pkg_name cmdargs + +%global common_summary Command line argument processing + +%global common_description This library provides an easy way to define command line \ +parsers. + +%global ghc_pkg_deps ghc-mtl-devel + +%bcond_without shared +%bcond_without hscolour + +# debuginfo is not useful for ghc +%global debug_package %{nil} + +Name: ghc-%{pkg_name} +Version: 0.6.3 +Release: 1%{?dist} +Summary: Haskell %{pkg_name} + +Group: System Environment/Libraries +License: BSD +URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{pkg_name} +Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# fedora ghc archs: +ExclusiveArch: %{ix86} x86_64 ppc alpha +BuildRequires: ghc, ghc-doc, ghc-prof +BuildRequires: ghc-rpm-macros >= 0.8.1 +%if %{with hscolour} +BuildRequires: hscolour +%endif +%{?ghc_pkg_deps:BuildRequires: %{ghc_pkg_deps}, %(echo %{ghc_pkg_deps} | sed -e "s/\(ghc-[^, ]\+\)-devel/\1-doc,\1-prof/g")} +%{?ghc_pkg_c_deps:BuildRequires: %{ghc_pkg_c_deps}} + +%description +%{common_description} +%if %{with shared} +This package provides the shared library. +%endif + + +%prep +%setup -q -n %{pkg_name}-%{version} + + +%build +%ghc_lib_build + + +%install +rm -rf %{buildroot} +%ghc_lib_install +# Remove the demo program +rm -vf %{buildroot}/%{_bindir}/%{pkg_name} + + +%clean +rm -rf %{buildroot} + + +%{?ghc_lib_package} + + +%changelog +* Fri Nov 12 2010 Ben Boeckel - 0.6.3-1 +- Update to 0.6.3 + +* Mon Oct 18 2010 Ben Boeckel - 0.6.1-1 +- Update to 0.6.1 + +* Sat Sep 18 2010 Ben Boeckel - 0.6-1 +- Update to 0.6 + +* Thu Sep 16 2010 Ben Boeckel - 0.5-1 +- Update to 0.5 + +* Sun Sep 05 2010 Ben Boeckel - 0.4-1 +- Update to 0.4 + +* Wed Sep 01 2010 Ben Boeckel - 0.2-2 +- Don't ship the demo program + +* Wed Sep 01 2010 Ben Boeckel - 0.2-1 +- Initial package + +* Wed Sep 1 2010 Fedora Haskell SIG - 0.2-0 +- initial packaging for Fedora automatically generated by cabal2spec-0.22.2 diff --git a/sources b/sources index e69de29..e254d3f 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +b0797441eba0fe652f5edc27a819b7f7 cmdargs-0.6.3.tar.gz From 3eb9ca63753a3c4b4b0c0ec16293d8de8415f5a1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 29 Nov 2010 12:24:06 +1000 Subject: [PATCH 03/76] update url --- ghc-cmdargs.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index d3d3064..c6308e6 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -20,7 +20,7 @@ Summary: Haskell %{pkg_name} Group: System Environment/Libraries License: BSD -URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{pkg_name} +URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # fedora ghc archs: From d888f65eaec760326c2307e36202bca4b2a98fba Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 29 Nov 2010 13:48:02 +1000 Subject: [PATCH 04/76] add BR transformers --- ghc-cmdargs.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index c6308e6..56339fb 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -5,7 +5,7 @@ %global common_description This library provides an easy way to define command line \ parsers. -%global ghc_pkg_deps ghc-mtl-devel +%global ghc_pkg_deps ghc-mtl-devel, ghc-transformers-devel %bcond_without shared %bcond_without hscolour @@ -15,7 +15,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Haskell %{pkg_name} Group: System Environment/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Mon Nov 29 2010 Jens Petersen - 0.6.3-2 +- BR transformers + * Fri Nov 12 2010 Ben Boeckel - 0.6.3-1 - Update to 0.6.3 From f1284cd086c7469fcd0bfa10b4722f993d220bf0 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 3 Dec 2010 18:31:41 -0500 Subject: [PATCH 05/76] Update to 0.6.4 --- .gitignore | 1 + ghc-cmdargs.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 70267c1..e124078 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /cmdargs-0.6.3.tar.gz +/cmdargs-0.6.4.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 56339fb..5d9104a 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -5,7 +5,7 @@ %global common_description This library provides an easy way to define command line \ parsers. -%global ghc_pkg_deps ghc-mtl-devel, ghc-transformers-devel +%global ghc_pkg_deps ghc-transformers-devel %bcond_without shared %bcond_without hscolour @@ -14,8 +14,8 @@ parsers. %global debug_package %{nil} Name: ghc-%{pkg_name} -Version: 0.6.3 -Release: 2%{?dist} +Version: 0.6.4 +Release: 1%{?dist} Summary: Haskell %{pkg_name} Group: System Environment/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Tue Nov 23 2010 Ben Boeckel - 0.6.4-1 +- Update to 0.6.4 + * Mon Nov 29 2010 Jens Petersen - 0.6.3-2 - BR transformers diff --git a/sources b/sources index e254d3f..0246002 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b0797441eba0fe652f5edc27a819b7f7 cmdargs-0.6.3.tar.gz +0de138a9ba87dc9151e4b835321c406e cmdargs-0.6.4.tar.gz From 1c7ac3bfb9d7dee1283c73633be58c40e255fed9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 3 Dec 2010 18:37:07 -0500 Subject: [PATCH 06/76] Fix the %changelog date --- ghc-cmdargs.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 5d9104a..ab7d1a5 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -63,7 +63,7 @@ rm -rf %{buildroot} %changelog -* Tue Nov 23 2010 Ben Boeckel - 0.6.4-1 +* Fri Dec 03 2010 Ben Boeckel - 0.6.4-1 - Update to 0.6.4 * Mon Nov 29 2010 Jens Petersen - 0.6.3-2 From ec41818b8c87dcc7e016381e23b105c61a46dede Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 17 Dec 2010 21:49:04 -0500 Subject: [PATCH 07/76] Update to 0.6.5 --- .gitignore | 1 + ghc-cmdargs.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e124078..8c0865b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /cmdargs-0.6.3.tar.gz /cmdargs-0.6.4.tar.gz +/cmdargs-0.6.5.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index ab7d1a5..e352268 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -14,7 +14,7 @@ parsers. %global debug_package %{nil} Name: ghc-%{pkg_name} -Version: 0.6.4 +Version: 0.6.5 Release: 1%{?dist} Summary: Haskell %{pkg_name} @@ -63,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Fri Dec 17 2010 Ben Boeckel - 0.6.5-1 +- Update to 0.6.5 + * Fri Dec 03 2010 Ben Boeckel - 0.6.4-1 - Update to 0.6.4 diff --git a/sources b/sources index 0246002..2a2e2d7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0de138a9ba87dc9151e4b835321c406e cmdargs-0.6.4.tar.gz +f495f42c360d6ff56ff4172d617140c6 cmdargs-0.6.5.tar.gz From 1a33c5f9c26b2d5e9dc2cca229add1b73f566865 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 15 Jan 2011 12:39:32 -0500 Subject: [PATCH 08/76] - Update to cabal2spec-0.22.4 - Rebuild --- ghc-cmdargs.spec | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index e352268..2bd5398 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -7,15 +7,12 @@ parsers. %global ghc_pkg_deps ghc-transformers-devel -%bcond_without shared -%bcond_without hscolour - # debuginfo is not useful for ghc %global debug_package %{nil} Name: ghc-%{pkg_name} Version: 0.6.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Haskell %{pkg_name} Group: System Environment/Libraries @@ -26,12 +23,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # fedora ghc archs: ExclusiveArch: %{ix86} x86_64 ppc alpha BuildRequires: ghc, ghc-doc, ghc-prof -BuildRequires: ghc-rpm-macros >= 0.8.1 -%if %{with hscolour} +BuildRequires: ghc-rpm-macros >= 0.7.3 BuildRequires: hscolour -%endif %{?ghc_pkg_deps:BuildRequires: %{ghc_pkg_deps}, %(echo %{ghc_pkg_deps} | sed -e "s/\(ghc-[^, ]\+\)-devel/\1-doc,\1-prof/g")} -%{?ghc_pkg_c_deps:BuildRequires: %{ghc_pkg_c_deps}} %description %{common_description} @@ -49,20 +43,19 @@ This package provides the shared library. %install -rm -rf %{buildroot} %ghc_lib_install # Remove the demo program rm -vf %{buildroot}/%{_bindir}/%{pkg_name} -%clean -rm -rf %{buildroot} - - %{?ghc_lib_package} %changelog +* Sat Jan 15 2011 Ben Boeckel - 0.6.5-2 +- Update to cabal2spec-0.22.4 +- Rebuild + * Fri Dec 17 2010 Ben Boeckel - 0.6.5-1 - Update to 0.6.5 From cac525ceda4a269429a895b6cd8d9f392f21da17 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 15 Jan 2011 12:46:16 -0500 Subject: [PATCH 09/76] Remove buildroot tag --- ghc-cmdargs.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 2bd5398..37ec852 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -19,7 +19,6 @@ Group: System Environment/Libraries License: BSD URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # fedora ghc archs: ExclusiveArch: %{ix86} x86_64 ppc alpha BuildRequires: ghc, ghc-doc, ghc-prof From 9f68edc2dc4fcf3742e3aadd5c86644cc673f491 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 15 Jan 2011 13:19:02 -0500 Subject: [PATCH 10/76] - Update to 0.6.7 --- .gitignore | 1 + ghc-cmdargs.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8c0865b..b05aedd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /cmdargs-0.6.3.tar.gz /cmdargs-0.6.4.tar.gz /cmdargs-0.6.5.tar.gz +/cmdargs-0.6.7.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 37ec852..1603494 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -11,8 +11,8 @@ parsers. %global debug_package %{nil} Name: ghc-%{pkg_name} -Version: 0.6.5 -Release: 2%{?dist} +Version: 0.6.7 +Release: 1%{?dist} Summary: Haskell %{pkg_name} Group: System Environment/Libraries @@ -51,6 +51,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Sat Jan 15 2011 Ben Boeckel - 0.6.7-1 +- Update to 0.6.7 + * Sat Jan 15 2011 Ben Boeckel - 0.6.5-2 - Update to cabal2spec-0.22.4 - Rebuild diff --git a/sources b/sources index 2a2e2d7..4a45797 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f495f42c360d6ff56ff4172d617140c6 cmdargs-0.6.5.tar.gz +3c7edd223baa59d669f0db0970105309 cmdargs-0.6.7.tar.gz From 89e82fef3b1b97585d814b79a4c7ee5c808e65d5 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 19:05:06 -0600 Subject: [PATCH 11/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 1603494..30b7130 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -12,7 +12,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.6.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Haskell %{pkg_name} Group: System Environment/Libraries @@ -51,6 +51,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 0.6.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sat Jan 15 2011 Ben Boeckel - 0.6.7-1 - Update to 0.6.7 From b26be809493dcbb304e263f000d5816287ed798f Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 17 Feb 2011 00:34:32 -0500 Subject: [PATCH 12/76] Update to 0.6.8 --- ghc-cmdargs.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 30b7130..cb8751f 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -11,8 +11,8 @@ parsers. %global debug_package %{nil} Name: ghc-%{pkg_name} -Version: 0.6.7 -Release: 2%{?dist} +Version: 0.6.8 +Release: 1%{?dist} Summary: Haskell %{pkg_name} Group: System Environment/Libraries @@ -51,6 +51,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Thu Feb 17 2011 Ben Boeckel - 0.6.8-1 +- Update to 0.6.8 + * Tue Feb 08 2011 Fedora Release Engineering - 0.6.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 7d950e0bcf94d810d76c1c661c858852cb102ecd Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 17 Feb 2011 20:24:42 -0500 Subject: [PATCH 13/76] Upload new sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b05aedd..3991412 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /cmdargs-0.6.4.tar.gz /cmdargs-0.6.5.tar.gz /cmdargs-0.6.7.tar.gz +/cmdargs-0.6.8.tar.gz diff --git a/sources b/sources index 4a45797..2ca0346 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3c7edd223baa59d669f0db0970105309 cmdargs-0.6.7.tar.gz +ccb6fc292ddf9ef856e82d5e4694e84e cmdargs-0.6.8.tar.gz From 025a09c9c9ca9fb61cc407e1213034a40b7cef24 Mon Sep 17 00:00:00 2001 From: "Fabio M. Di Nitto" Date: Thu, 10 Mar 2011 09:15:38 +0100 Subject: [PATCH 14/76] Enable build on sparcv9 Signed-off-by: Fabio M. Di Nitto --- ghc-cmdargs.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index cb8751f..00338de 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -12,7 +12,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.6.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Haskell %{pkg_name} Group: System Environment/Libraries @@ -20,7 +20,7 @@ License: BSD URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz # fedora ghc archs: -ExclusiveArch: %{ix86} x86_64 ppc alpha +ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 BuildRequires: ghc, ghc-doc, ghc-prof BuildRequires: ghc-rpm-macros >= 0.7.3 BuildRequires: hscolour @@ -51,6 +51,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Thu Mar 10 2011 Fabio M. Di Nitto - 0.6.8-2 +- Enable build on sparcv9 + * Thu Feb 17 2011 Ben Boeckel - 0.6.8-1 - Update to 0.6.8 From 4cc43a13a1969636dd9c8d0130a801484e0c41de Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 10 May 2011 22:48:28 -0400 Subject: [PATCH 15/76] Update to cabal2spec-0.22.6 --- ghc-cmdargs.spec | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 00338de..a929085 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,3 +1,7 @@ +# For Haskell Packaging Guidelines see: +# - https://fedoraproject.org/wiki/Packaging:Haskell +# - https://fedoraproject.org/wiki/PackagingDrafts/Haskell + %global pkg_name cmdargs %global common_summary Command line argument processing @@ -7,12 +11,9 @@ parsers. %global ghc_pkg_deps ghc-transformers-devel -# debuginfo is not useful for ghc -%global debug_package %{nil} - Name: ghc-%{pkg_name} -Version: 0.6.8 -Release: 2%{?dist} +Version: 0.7 +Release: 1%{?dist} Summary: Haskell %{pkg_name} Group: System Environment/Libraries @@ -20,17 +21,15 @@ License: BSD URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz # fedora ghc archs: -ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 +ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 ppc64 BuildRequires: ghc, ghc-doc, ghc-prof +# macros for building haskell packages BuildRequires: ghc-rpm-macros >= 0.7.3 BuildRequires: hscolour %{?ghc_pkg_deps:BuildRequires: %{ghc_pkg_deps}, %(echo %{ghc_pkg_deps} | sed -e "s/\(ghc-[^, ]\+\)-devel/\1-doc,\1-prof/g")} %description %{common_description} -%if %{with shared} -This package provides the shared library. -%endif %prep @@ -47,10 +46,15 @@ This package provides the shared library. rm -vf %{buildroot}/%{_bindir}/%{pkg_name} -%{?ghc_lib_package} +# define the devel and prof subpkgs, devel post[un] scripts, and filelists: +# ghc-%pkg_name{,devel,prof}.files +%ghc_lib_package %changelog +* Tue May 10 2011 Ben Boeckel - 0.7-1 +- Update to cabal2spec-0.22.6 + * Thu Mar 10 2011 Fabio M. Di Nitto - 0.6.8-2 - Enable build on sparcv9 From f0940530c3edc9a1ca554dfbb6d9adcd689ac162 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 10 May 2011 22:50:08 -0400 Subject: [PATCH 16/76] Upload new sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3991412..00faa36 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /cmdargs-0.6.5.tar.gz /cmdargs-0.6.7.tar.gz /cmdargs-0.6.8.tar.gz +/cmdargs-0.7.tar.gz diff --git a/sources b/sources index 2ca0346..1477e29 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ccb6fc292ddf9ef856e82d5e4694e84e cmdargs-0.6.8.tar.gz +c66db11ecaaae3aad7ebebe7ba5aa54d cmdargs-0.7.tar.gz From 66da103842b4350e748815142de8203c6620202c Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 11 May 2011 21:21:16 -0400 Subject: [PATCH 17/76] Update to cabal2spec-0.22.7 --- ghc-cmdargs.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index a929085..1f69c6e 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -13,7 +13,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Haskell %{pkg_name} Group: System Environment/Libraries @@ -47,11 +47,14 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} # define the devel and prof subpkgs, devel post[un] scripts, and filelists: -# ghc-%pkg_name{,devel,prof}.files +# ghc-%%pkg_name{,devel,prof}.files %ghc_lib_package %changelog +* Wed May 11 2011 Ben Boeckel - 0.7-2 +- Update to cabal2spec-0.22.7 + * Tue May 10 2011 Ben Boeckel - 0.7-1 - Update to cabal2spec-0.22.6 From e366cedabf24f97944bfeb6ae3e46380c97743d0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 24 Jun 2011 18:59:57 +0900 Subject: [PATCH 18/76] update for cabal2spec-0.23.2 --- ghc-cmdargs.spec | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 1f69c6e..6cd7d69 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -9,24 +9,20 @@ %global common_description This library provides an easy way to define command line \ parsers. -%global ghc_pkg_deps ghc-transformers-devel - Name: ghc-%{pkg_name} Version: 0.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Haskell %{pkg_name} Group: System Environment/Libraries License: BSD URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz -# fedora ghc archs: -ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 ppc64 -BuildRequires: ghc, ghc-doc, ghc-prof -# macros for building haskell packages -BuildRequires: ghc-rpm-macros >= 0.7.3 +ExclusiveArch: %{ghc_arches} +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros BuildRequires: hscolour -%{?ghc_pkg_deps:BuildRequires: %{ghc_pkg_deps}, %(echo %{ghc_pkg_deps} | sed -e "s/\(ghc-[^, ]\+\)-devel/\1-doc,\1-prof/g")} +BuildRequires: ghc-transformers-prof %description %{common_description} @@ -52,6 +48,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Fri Jun 24 2011 Jens Petersen - 0.7-3 +- BR ghc-Cabal-devel instead of ghc-prof and use ghc_arches (cabal2spec-0.23.2) + * Wed May 11 2011 Ben Boeckel - 0.7-2 - Update to cabal2spec-0.22.7 From d720755c4d7a70171200458db768750735b3357b Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 9 Jul 2011 01:10:30 -0400 Subject: [PATCH 19/76] Update to cabal2spec-0.24 --- ghc-cmdargs.spec | 44 ++++++++++++++++++++++++++++++++++++++------ 1 file changed, 38 insertions(+), 6 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 6cd7d69..451bb68 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -11,23 +11,41 @@ parsers. Name: ghc-%{pkg_name} Version: 0.7 -Release: 3%{?dist} -Summary: Haskell %{pkg_name} +Release: 4%{?dist} +Summary: %{common_summary} Group: System Environment/Libraries License: BSD +# BEGIN: cabal2spec-0.24 URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz ExclusiveArch: %{ghc_arches} BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros BuildRequires: hscolour -BuildRequires: ghc-transformers-prof +# END: cabal2spec-0.24 + +BuildRequires: ghc-transformers-devel %description %{common_description} +%package -n ghc-%{pkg_name}-devel +Summary: Development files for %{common_summary} +Group: Development/Libraries +# BEGIN: cabal2spec-0.24 +%{?ghc_devel_requires} +Obsoletes: ghc-%{pkg_name}-prof < %{version}-%{release} +Provides: ghc-%{pkg_name}-prof = %{version}-%{release} +# END: cabal2spec-0.24 + +%description -n ghc-%{pkg_name}-devel +%{common_description} + +This package contains the development files. + + %prep %setup -q -n %{pkg_name}-%{version} @@ -42,12 +60,26 @@ BuildRequires: ghc-transformers-prof rm -vf %{buildroot}/%{_bindir}/%{pkg_name} -# define the devel and prof subpkgs, devel post[un] scripts, and filelists: -# ghc-%%pkg_name{,devel,prof}.files -%ghc_lib_package +%post -n ghc-%{pkg_name}-devel +%ghc_pkg_recache + +%postun -n ghc-%{pkg_name}-devel +%ghc_pkg_recache + + +%if %{undefined ghc_without_shared} +%files -n ghc-%{pkg_name} -f ghc-%{pkg_name}.files +%defattr(-,root,root,-) +%endif + +%files -n ghc-%{pkg_name}-devel -f ghc-%{pkg_name}-devel.files +%defattr(-,root,root,-) %changelog +* Sat Jul 09 2011 Ben Boeckel - 0.7-4 +- Update to cabal2spec-0.24 + * Fri Jun 24 2011 Jens Petersen - 0.7-3 - BR ghc-Cabal-devel instead of ghc-prof and use ghc_arches (cabal2spec-0.23.2) From bd768324e9a6f60d8af1e6c7598300cc4b40043e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 3 Oct 2011 18:48:53 +0900 Subject: [PATCH 20/76] update to 0.8 and cabal2spec-0.24.1 --- .gitignore | 1 + ghc-cmdargs.spec | 22 ++++++++++++---------- sources | 2 +- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 00faa36..78c09be 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /cmdargs-0.6.7.tar.gz /cmdargs-0.6.8.tar.gz /cmdargs-0.7.tar.gz +/cmdargs-0.8.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 451bb68..7faeca7 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -10,22 +10,23 @@ parsers. Name: ghc-%{pkg_name} -Version: 0.7 -Release: 4%{?dist} +Version: 0.8 +Release: 1%{?dist} Summary: %{common_summary} Group: System Environment/Libraries License: BSD -# BEGIN: cabal2spec-0.24 +# BEGIN cabal2spec URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz ExclusiveArch: %{ghc_arches} BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros +%if %{undefined without_hscolour} BuildRequires: hscolour -# END: cabal2spec-0.24 - -BuildRequires: ghc-transformers-devel +%endif +# END cabal2spec +BuildRequires: ghc-transformers-prof %description %{common_description} @@ -34,11 +35,11 @@ BuildRequires: ghc-transformers-devel %package -n ghc-%{pkg_name}-devel Summary: Development files for %{common_summary} Group: Development/Libraries -# BEGIN: cabal2spec-0.24 +# BEGIN cabal2spec %{?ghc_devel_requires} Obsoletes: ghc-%{pkg_name}-prof < %{version}-%{release} Provides: ghc-%{pkg_name}-prof = %{version}-%{release} -# END: cabal2spec-0.24 +# END cabal2spec %description -n ghc-%{pkg_name}-devel %{common_description} @@ -69,14 +70,15 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %if %{undefined ghc_without_shared} %files -n ghc-%{pkg_name} -f ghc-%{pkg_name}.files -%defattr(-,root,root,-) %endif %files -n ghc-%{pkg_name}-devel -f ghc-%{pkg_name}-devel.files -%defattr(-,root,root,-) %changelog +* Mon Oct 3 2011 Jens Petersen - 0.8-1 +- update to 0.8 and cabal2spec-0.24.1 + * Sat Jul 09 2011 Ben Boeckel - 0.7-4 - Update to cabal2spec-0.24 diff --git a/sources b/sources index 1477e29..0283cc8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c66db11ecaaae3aad7ebebe7ba5aa54d cmdargs-0.7.tar.gz +7d147d53d170c86683243690c154a1e7 cmdargs-0.8.tar.gz From a377339149cea8ed7ac3e91f71041d4df386c5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Tue, 11 Oct 2011 12:01:05 +0200 Subject: [PATCH 21/76] rebuild with new gmp --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 7faeca7..a47e365 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -11,7 +11,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.8 -Release: 1%{?dist} +Release: 1%{?dist}.1 Summary: %{common_summary} Group: System Environment/Libraries @@ -76,6 +76,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Tue Oct 11 2011 Peter Schiffer - 0.8-1.1 +- rebuild with new gmp + * Mon Oct 3 2011 Jens Petersen - 0.8-1 - update to 0.8 and cabal2spec-0.24.1 From 23c487fa3bef736cdb9f3f78e99ff38763c20b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Thu, 20 Oct 2011 21:54:50 +0200 Subject: [PATCH 22/76] rebuild with new gmp without compat lib --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index a47e365..cfd6e9d 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -11,7 +11,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.8 -Release: 1%{?dist}.1 +Release: 1%{?dist}.2 Summary: %{common_summary} Group: System Environment/Libraries @@ -76,6 +76,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Thu Oct 20 2011 Marcela Mašláňová - 0.8-1.2 +- rebuild with new gmp without compat lib + * Tue Oct 11 2011 Peter Schiffer - 0.8-1.1 - rebuild with new gmp From 76c7c8980751b526e262abf1c3f923d43730614b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 21:21:34 -0600 Subject: [PATCH 23/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index cfd6e9d..e9796a0 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -11,7 +11,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.8 -Release: 1%{?dist}.2 +Release: 2%{?dist}.2 Summary: %{common_summary} Group: System Environment/Libraries @@ -76,6 +76,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 0.8-2.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Thu Oct 20 2011 Marcela Mašláňová - 0.8-1.2 - rebuild with new gmp without compat lib From eb458757b8a7162f9861887e94038d21b89356a7 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 28 Feb 2012 22:52:31 -0500 Subject: [PATCH 24/76] Update to 0.9.3 --- .gitignore | 1 + ghc-cmdargs.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 78c09be..ac9ca57 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /cmdargs-0.6.8.tar.gz /cmdargs-0.7.tar.gz /cmdargs-0.8.tar.gz +/cmdargs-0.9.3.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index e9796a0..0bd7841 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -10,8 +10,8 @@ parsers. Name: ghc-%{pkg_name} -Version: 0.8 -Release: 2%{?dist}.2 +Version: 0.9.3 +Release: 1%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -76,6 +76,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Tue Feb 28 2012 Ben Boeckel - 0.9.3-1 +- Update to 0.9.3 + * Fri Jan 13 2012 Fedora Release Engineering - 0.8-2.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild diff --git a/sources b/sources index 0283cc8..8954bf0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7d147d53d170c86683243690c154a1e7 cmdargs-0.8.tar.gz +dbd57d7168417c38cf36672bad0b107a cmdargs-0.9.3.tar.gz From f617fe38568dffb96ac07aea32ee572e71254807 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 22 Mar 2012 22:30:47 +0900 Subject: [PATCH 25/76] update to cabal2spec-0.25 --- ghc-cmdargs.spec | 45 ++++++++++++++------------------------------- 1 file changed, 14 insertions(+), 31 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 0bd7841..21b31a7 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,6 +1,6 @@ -# For Haskell Packaging Guidelines see: -# - https://fedoraproject.org/wiki/Packaging:Haskell -# - https://fedoraproject.org/wiki/PackagingDrafts/Haskell +# cabal2spec-0.25 +# https://fedoraproject.org/wiki/Packaging:Haskell +# https://fedoraproject.org/wiki/PackagingDrafts/Haskell %global pkg_name cmdargs @@ -11,7 +11,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.9.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -21,10 +21,7 @@ URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz ExclusiveArch: %{ghc_arches} BuildRequires: ghc-Cabal-devel -BuildRequires: ghc-rpm-macros -%if %{undefined without_hscolour} -BuildRequires: hscolour -%endif +BuildRequires: ghc-rpm-macros %{!?without_hscolour:hscolour} # END cabal2spec BuildRequires: ghc-transformers-prof @@ -32,21 +29,6 @@ BuildRequires: ghc-transformers-prof %{common_description} -%package -n ghc-%{pkg_name}-devel -Summary: Development files for %{common_summary} -Group: Development/Libraries -# BEGIN cabal2spec -%{?ghc_devel_requires} -Obsoletes: ghc-%{pkg_name}-prof < %{version}-%{release} -Provides: ghc-%{pkg_name}-prof = %{version}-%{release} -# END cabal2spec - -%description -n ghc-%{pkg_name}-devel -%{common_description} - -This package contains the development files. - - %prep %setup -q -n %{pkg_name}-%{version} @@ -61,21 +43,22 @@ This package contains the development files. rm -vf %{buildroot}/%{_bindir}/%{pkg_name} -%post -n ghc-%{pkg_name}-devel -%ghc_pkg_recache +# devel subpackage +%ghc_devel_package -%postun -n ghc-%{pkg_name}-devel -%ghc_pkg_recache +%ghc_devel_description -%if %{undefined ghc_without_shared} -%files -n ghc-%{pkg_name} -f ghc-%{pkg_name}.files -%endif +%ghc_devel_post_postun -%files -n ghc-%{pkg_name}-devel -f ghc-%{pkg_name}-devel.files + +%ghc_files LICENSE %changelog +* Sun Mar 18 2012 Jens Petersen - 0.9.3-2 +- update to cabal2spec-0.25 + * Tue Feb 28 2012 Ben Boeckel - 0.9.3-1 - Update to 0.9.3 From 5cfa566ead8a472f8ff2ec3e4f9cd3dd82dbdc70 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 10 Jun 2012 09:04:34 +0900 Subject: [PATCH 26/76] update to 0.9.5 --- .gitignore | 1 + ghc-cmdargs.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ac9ca57..6a0a69c 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /cmdargs-0.7.tar.gz /cmdargs-0.8.tar.gz /cmdargs-0.9.3.tar.gz +/cmdargs-0.9.5.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 21b31a7..870de13 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -10,8 +10,8 @@ parsers. Name: ghc-%{pkg_name} -Version: 0.9.3 -Release: 2%{?dist} +Version: 0.9.5 +Release: 1%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -56,6 +56,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Sun Jun 10 2012 Jens Petersen - 0.9.5-1 +- update to 0.9.5 + * Sun Mar 18 2012 Jens Petersen - 0.9.3-2 - update to cabal2spec-0.25 diff --git a/sources b/sources index 8954bf0..74271e3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -dbd57d7168417c38cf36672bad0b107a cmdargs-0.9.3.tar.gz +5648d85e1e030123d851d527b2014096 cmdargs-0.9.5.tar.gz From 2c7cc73eb67c2386b48dca5d91459a88194b3eab Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 10 Jun 2012 09:49:43 +0900 Subject: [PATCH 27/76] disable dynamic linking of test program --- ghc-cmdargs.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 870de13..98186a0 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -34,6 +34,8 @@ BuildRequires: ghc-transformers-prof %build +# dynamic linking of test program failing +%define ghc_without_dynamic 1 %ghc_lib_build @@ -58,6 +60,7 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog * Sun Jun 10 2012 Jens Petersen - 0.9.5-1 - update to 0.9.5 +- disable dynamic linking of test program * Sun Mar 18 2012 Jens Petersen - 0.9.3-2 - update to cabal2spec-0.25 From 8b82abe088449d64401b29d3dceb7086e835f0a4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 16 Jul 2012 11:08:29 +0900 Subject: [PATCH 28/76] change prof BRs to devel --- ghc-cmdargs.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 98186a0..932347c 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -11,7 +11,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.9.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -23,7 +23,7 @@ ExclusiveArch: %{ghc_arches} BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros %{!?without_hscolour:hscolour} # END cabal2spec -BuildRequires: ghc-transformers-prof +BuildRequires: ghc-transformers-devel %description %{common_description} @@ -58,6 +58,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Mon Jul 16 2012 Jens Petersen - 0.9.5-2 +- change prof BRs to devel + * Sun Jun 10 2012 Jens Petersen - 0.9.5-1 - update to 0.9.5 - disable dynamic linking of test program From bb38969a37ec2f3943896b1cb59ab40eec6fb887 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 19 Jul 2012 00:29:13 -0500 Subject: [PATCH 29/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 932347c..c0dfed9 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -11,7 +11,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.9.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -58,6 +58,9 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Thu Jul 19 2012 Fedora Release Engineering - 0.9.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Mon Jul 16 2012 Jens Petersen - 0.9.5-2 - change prof BRs to devel From 5c98f06c17e02fe1ddf7be465dae90c28b2540eb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 29 Oct 2012 19:07:01 +0900 Subject: [PATCH 30/76] update to 0.10 with cabal-rpm; disable building testprog in .cabal --- .gitignore | 1 + cmdargs-disable-testprog.patch | 11 +++++++++++ ghc-cmdargs.spec | 29 ++++++++++++++++------------- sources | 2 +- 4 files changed, 29 insertions(+), 14 deletions(-) create mode 100644 cmdargs-disable-testprog.patch diff --git a/.gitignore b/.gitignore index 6a0a69c..e21bd01 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /cmdargs-0.8.tar.gz /cmdargs-0.9.3.tar.gz /cmdargs-0.9.5.tar.gz +/cmdargs-0.10.tar.gz diff --git a/cmdargs-disable-testprog.patch b/cmdargs-disable-testprog.patch new file mode 100644 index 0000000..77b2c3a --- /dev/null +++ b/cmdargs-disable-testprog.patch @@ -0,0 +1,11 @@ +--- cmdargs-0.10/cmdargs.cabal~ 2012-08-10 02:28:16.000000000 +0900 ++++ cmdargs-0.10/cmdargs.cabal 2012-10-29 19:00:33.682629521 +0900 +@@ -38,7 +38,7 @@ + location: http://community.haskell.org/~ndm/darcs/cmdargs/ + + flag testprog +- default: True ++ default: False + description: Build the test program + + flag quotation diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index c0dfed9..6701c39 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,4 +1,3 @@ -# cabal2spec-0.25 # https://fedoraproject.org/wiki/Packaging:Haskell # https://fedoraproject.org/wiki/PackagingDrafts/Haskell @@ -10,20 +9,24 @@ parsers. Name: ghc-%{pkg_name} -Version: 0.9.5 -Release: 3%{?dist} +Version: 0.10 +Release: 1%{?dist} Summary: %{common_summary} -Group: System Environment/Libraries License: BSD -# BEGIN cabal2spec URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz -ExclusiveArch: %{ghc_arches} + BuildRequires: ghc-Cabal-devel -BuildRequires: ghc-rpm-macros %{!?without_hscolour:hscolour} -# END cabal2spec +BuildRequires: ghc-rpm-macros +# Begin cabal-rpm deps: +BuildRequires: ghc-filepath-devel +BuildRequires: ghc-process-devel +BuildRequires: ghc-template-haskell-devel BuildRequires: ghc-transformers-devel +ExclusiveArch: %{ghc_arches_with_ghci} +# End cabal-rpm deps +Patch1: cmdargs-disable-testprog.patch %description %{common_description} @@ -31,21 +34,17 @@ BuildRequires: ghc-transformers-devel %prep %setup -q -n %{pkg_name}-%{version} +%patch1 -p1 -b .orig %build -# dynamic linking of test program failing -%define ghc_without_dynamic 1 %ghc_lib_build %install %ghc_lib_install -# Remove the demo program -rm -vf %{buildroot}/%{_bindir}/%{pkg_name} -# devel subpackage %ghc_devel_package %ghc_devel_description @@ -58,6 +57,10 @@ rm -vf %{buildroot}/%{_bindir}/%{pkg_name} %changelog +* Mon Oct 29 2012 Jens Petersen - 0.10-1 +- update to 0.10 with cabal-rpm +- disable building testprog in .cabal + * Thu Jul 19 2012 Fedora Release Engineering - 0.9.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/sources b/sources index 74271e3..71d422f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5648d85e1e030123d851d527b2014096 cmdargs-0.9.5.tar.gz +4fbcfdbca06e29012fb0bc26e73ceb56 cmdargs-0.10.tar.gz From d491ae5889261b77d81a204a39e219b17ee94b4f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 17:03:29 -0600 Subject: [PATCH 31/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 6701c39..f3705ec 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -10,7 +10,7 @@ parsers. Name: ghc-%{pkg_name} Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: %{common_summary} License: BSD @@ -57,6 +57,9 @@ Patch1: cmdargs-disable-testprog.patch %changelog +* Wed Feb 13 2013 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Mon Oct 29 2012 Jens Petersen - 0.10-1 - update to 0.10 with cabal-rpm - disable building testprog in .cabal From c97bc12100e07c694e64b3723624fdd06d92cf17 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 12 Mar 2013 15:53:24 +0900 Subject: [PATCH 32/76] update to 0.10.2 --- .gitignore | 1 + cmdargs-disable-testprog.patch | 11 ----------- ghc-cmdargs.spec | 9 +++++---- sources | 2 +- 4 files changed, 7 insertions(+), 16 deletions(-) delete mode 100644 cmdargs-disable-testprog.patch diff --git a/.gitignore b/.gitignore index e21bd01..11ab8c9 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /cmdargs-0.9.3.tar.gz /cmdargs-0.9.5.tar.gz /cmdargs-0.10.tar.gz +/cmdargs-0.10.2.tar.gz diff --git a/cmdargs-disable-testprog.patch b/cmdargs-disable-testprog.patch deleted file mode 100644 index 77b2c3a..0000000 --- a/cmdargs-disable-testprog.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- cmdargs-0.10/cmdargs.cabal~ 2012-08-10 02:28:16.000000000 +0900 -+++ cmdargs-0.10/cmdargs.cabal 2012-10-29 19:00:33.682629521 +0900 -@@ -38,7 +38,7 @@ - location: http://community.haskell.org/~ndm/darcs/cmdargs/ - - flag testprog -- default: True -+ default: False - description: Build the test program - - flag quotation diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index f3705ec..b88973a 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -9,8 +9,8 @@ parsers. Name: ghc-%{pkg_name} -Version: 0.10 -Release: 2%{?dist} +Version: 0.10.2 +Release: 1%{?dist} Summary: %{common_summary} License: BSD @@ -26,7 +26,6 @@ BuildRequires: ghc-template-haskell-devel BuildRequires: ghc-transformers-devel ExclusiveArch: %{ghc_arches_with_ghci} # End cabal-rpm deps -Patch1: cmdargs-disable-testprog.patch %description %{common_description} @@ -34,7 +33,6 @@ Patch1: cmdargs-disable-testprog.patch %prep %setup -q -n %{pkg_name}-%{version} -%patch1 -p1 -b .orig %build @@ -57,6 +55,9 @@ Patch1: cmdargs-disable-testprog.patch %changelog +* Tue Mar 12 2013 Jens Petersen - 0.10.2-1 +- update to 0.10.2 + * Wed Feb 13 2013 Fedora Release Engineering - 0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild diff --git a/sources b/sources index 71d422f..02a7b81 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4fbcfdbca06e29012fb0bc26e73ceb56 cmdargs-0.10.tar.gz +755e82053471b090992e656cff36a9fc cmdargs-0.10.2.tar.gz From a5e2b81633f4ee26920e04816a04ee37f7375d6e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 7 Jun 2013 12:48:25 +0900 Subject: [PATCH 33/76] update to new simplified Haskell Packaging Guidelines --- ghc-cmdargs.spec | 39 ++++++++++++++++++++++++++------------- 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index b88973a..a8c15d1 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,17 +1,11 @@ # https://fedoraproject.org/wiki/Packaging:Haskell -# https://fedoraproject.org/wiki/PackagingDrafts/Haskell %global pkg_name cmdargs -%global common_summary Command line argument processing - -%global common_description This library provides an easy way to define command line \ -parsers. - Name: ghc-%{pkg_name} Version: 0.10.2 -Release: 1%{?dist} -Summary: %{common_summary} +Release: 2%{?dist} +Summary: Command line argument processing License: BSD URL: http://hackage.haskell.org/package/%{pkg_name} @@ -28,7 +22,19 @@ ExclusiveArch: %{ghc_arches_with_ghci} # End cabal-rpm deps %description -%{common_description} +This library provides an easy way to define command line +parsers. + + +%package devel +Summary: Haskell %{pkg_name} library development files +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} +Requires: %{name} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. %prep @@ -43,18 +49,25 @@ ExclusiveArch: %{ghc_arches_with_ghci} %ghc_lib_install -%ghc_devel_package +%post devel +%ghc_pkg_recache -%ghc_devel_description +%postun devel +%ghc_pkg_recache -%ghc_devel_post_postun +%files -f %{name}.files +%doc LICENSE -%ghc_files LICENSE + +%files devel -f %{name}-devel.files %changelog +* Fri Jun 07 2013 Jens Petersen - 0.10.2-2 +- update to new simplified Haskell Packaging Guidelines + * Tue Mar 12 2013 Jens Petersen - 0.10.2-1 - update to 0.10.2 From 67054d3f5ac8a7c1d54bfb2908b044b48c1909d0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 7 Jun 2013 18:38:41 +0900 Subject: [PATCH 34/76] update to 0.10.3 --- .gitignore | 1 + ghc-cmdargs.spec | 10 +++++----- sources | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 11ab8c9..58f950b 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /cmdargs-0.9.5.tar.gz /cmdargs-0.10.tar.gz /cmdargs-0.10.2.tar.gz +/cmdargs-0.10.3.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index a8c15d1..8f11f01 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -3,8 +3,8 @@ %global pkg_name cmdargs Name: ghc-%{pkg_name} -Version: 0.10.2 -Release: 2%{?dist} +Version: 0.10.3 +Release: 1%{?dist} Summary: Command line argument processing License: BSD @@ -22,8 +22,7 @@ ExclusiveArch: %{ghc_arches_with_ghci} # End cabal-rpm deps %description -This library provides an easy way to define command line -parsers. +This library provides an easy way to define command line parsers. %package devel @@ -65,7 +64,8 @@ This package provides the Haskell %{pkg_name} library development files. %changelog -* Fri Jun 07 2013 Jens Petersen - 0.10.2-2 +* Fri Jun 07 2013 Jens Petersen - 0.10.3-1 +- update to 0.10.3 - update to new simplified Haskell Packaging Guidelines * Tue Mar 12 2013 Jens Petersen - 0.10.2-1 diff --git a/sources b/sources index 02a7b81..09497f5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -755e82053471b090992e656cff36a9fc cmdargs-0.10.2.tar.gz +537ba2091a951aa03ce5eb1df295df76 cmdargs-0.10.3.tar.gz From 489ea33d5c1fd3566afdb0e3798137493c0ad2d4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 08:29:47 -0500 Subject: [PATCH 35/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 8f11f01..44de502 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.10.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Command line argument processing License: BSD @@ -64,6 +64,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 0.10.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Jun 07 2013 Jens Petersen - 0.10.3-1 - update to 0.10.3 - update to new simplified Haskell Packaging Guidelines From 4f1d2d3bd7e5b0d8ba36ef385696083cd2c9be4a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 24 Apr 2014 11:18:15 +0900 Subject: [PATCH 36/76] disable quotation on archs without ghci --- ghc-cmdargs.spec | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 44de502..75548c0 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.10.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command line argument processing License: BSD @@ -18,7 +18,6 @@ BuildRequires: ghc-filepath-devel BuildRequires: ghc-process-devel BuildRequires: ghc-template-haskell-devel BuildRequires: ghc-transformers-devel -ExclusiveArch: %{ghc_arches_with_ghci} # End cabal-rpm deps %description @@ -39,6 +38,10 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} +%ifnarch %{ghc_arches_with_ghci} +cabal-tweak-flag quotation False +%endif + %build %ghc_lib_build @@ -64,6 +67,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Apr 24 2014 Jens Petersen - 0.10.3-3 +- disable quotation on archs without ghci + * Sat Aug 03 2013 Fedora Release Engineering - 0.10.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From ed937623c7382e0d58f17cca4de8ad3a779ba183 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 09:38:11 -0500 Subject: [PATCH 37/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 75548c0..3d81cd2 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.10.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Command line argument processing License: BSD @@ -67,6 +67,9 @@ cabal-tweak-flag quotation False %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.10.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Thu Apr 24 2014 Jens Petersen - 0.10.3-3 - disable quotation on archs without ghci From 41665f4c17a44995bb95f22386393ded40e53726 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sat, 16 Aug 2014 14:51:04 +0000 Subject: [PATCH 38/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 3d81cd2..7909751 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.10.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Command line argument processing License: BSD @@ -67,6 +67,9 @@ cabal-tweak-flag quotation False %changelog +* Sat Aug 16 2014 Fedora Release Engineering - 0.10.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 0.10.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 4cfa31ca21c5c566ac2139293eaa7b82c09b7554 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 19 Jan 2015 16:59:42 +0900 Subject: [PATCH 39/76] update to 0.10.12 --- .gitignore | 1 + ghc-cmdargs.spec | 15 ++++++++++----- sources | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 58f950b..bffc27b 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /cmdargs-0.10.tar.gz /cmdargs-0.10.2.tar.gz /cmdargs-0.10.3.tar.gz +/cmdargs-0.10.12.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 7909751..46400dc 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -3,13 +3,13 @@ %global pkg_name cmdargs Name: ghc-%{pkg_name} -Version: 0.10.3 -Release: 5%{?dist} +Version: 0.10.12 +Release: 1%{?dist} Summary: Command line argument processing License: BSD -URL: http://hackage.haskell.org/package/%{pkg_name} -Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz +Url: https://hackage.haskell.org/package/%{pkg_name} +Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros @@ -26,10 +26,11 @@ This library provides an easy way to define command line parsers. %package devel Summary: Haskell %{pkg_name} library development files +Provides: %{name}-static = %{version}-%{release} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} Requires(postun): ghc-compiler = %{ghc_version} -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %description devel This package provides the Haskell %{pkg_name} library development files. @@ -64,9 +65,13 @@ cabal-tweak-flag quotation False %files devel -f %{name}-devel.files +%doc README.md %changelog +* Mon Jan 19 2015 Jens Petersen - 0.10.12-1 +- update to 0.10.12 + * Sat Aug 16 2014 Fedora Release Engineering - 0.10.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index 09497f5..cdcd16d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -537ba2091a951aa03ce5eb1df295df76 cmdargs-0.10.3.tar.gz +b962dc0472be507631f43f70b13b3157 cmdargs-0.10.12.tar.gz From 2aa5dade021906ca25823e4af03642c0e78c7c35 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 07:35:22 +0000 Subject: [PATCH 40/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 46400dc..859d845 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.10.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Command line argument processing License: BSD @@ -69,6 +69,9 @@ cabal-tweak-flag quotation False %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 0.10.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Jan 19 2015 Jens Petersen - 0.10.12-1 - update to 0.10.12 From ded0b7b6d4b638efff2d1422ce8e991bf7405705 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 8 Aug 2015 00:13:52 -0400 Subject: [PATCH 41/76] update to 0.10.13 --- ghc-cmdargs.spec | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 859d845..870a82b 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -3,8 +3,8 @@ %global pkg_name cmdargs Name: ghc-%{pkg_name} -Version: 0.10.12 -Release: 2%{?dist} +Version: 0.10.13 +Release: 1%{?dist} Summary: Command line argument processing License: BSD @@ -18,10 +18,28 @@ BuildRequires: ghc-filepath-devel BuildRequires: ghc-process-devel BuildRequires: ghc-template-haskell-devel BuildRequires: ghc-transformers-devel +ExclusiveArch: %{ghc_arches_with_ghci} # End cabal-rpm deps %description -This library provides an easy way to define command line parsers. +This library provides an easy way to define command line parsers. Most users +will want to use the "System.Console.CmdArgs.Implicit" module, whose +documentation contains an example. + +* "System.Console.CmdArgs.Explicit" provides a way to write command line +parsers for both single mode programs (most programs) and multiple mode +programs (e.g. darcs or cabal). Parsers are defined by constructing a data +structure. + +* "System.Console.CmdArgs.Implicit" provides a way to concisely define command +line parsers, up to three times shorter than getopt. These parsers are +translated into the Explicit data type. + +* "System.Console.CmdArgs.GetOpt" provides a wrapper allowing compatiblity with +existing getopt parsers, mapping to the Explicit data type. + +For a general reference on what command line flags are commonly used, see +. %package devel @@ -39,10 +57,6 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} -%ifnarch %{ghc_arches_with_ghci} -cabal-tweak-flag quotation False -%endif - %build %ghc_lib_build @@ -66,9 +80,13 @@ cabal-tweak-flag quotation False %files devel -f %{name}-devel.files %doc README.md +%{_bindir}/%{pkg_name} %changelog +* Sat Aug 08 2015 Ben Boeckel - 0.10.13-1 +- update to 0.10.13 + * Wed Jun 17 2015 Fedora Release Engineering - 0.10.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From e9c6be32a5a05be4d76dfed7d85ef22cb2d25f9a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 4 Sep 2015 17:35:26 +0900 Subject: [PATCH 42/76] use license macro; add tarball --- .gitignore | 1 + ghc-cmdargs.spec | 6 ++++-- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index bffc27b..06e08e7 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /cmdargs-0.10.2.tar.gz /cmdargs-0.10.3.tar.gz /cmdargs-0.10.12.tar.gz +/cmdargs-0.10.13.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 870a82b..75896a8 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -65,6 +65,8 @@ This package provides the Haskell %{pkg_name} library development files. %install %ghc_lib_install +rm %{buildroot}%{ghc_pkgdocdir}/LICENSE + %post devel %ghc_pkg_recache @@ -75,17 +77,17 @@ This package provides the Haskell %{pkg_name} library development files. %files -f %{name}.files -%doc LICENSE +%license LICENSE %files devel -f %{name}-devel.files %doc README.md -%{_bindir}/%{pkg_name} %changelog * Sat Aug 08 2015 Ben Boeckel - 0.10.13-1 - update to 0.10.13 +- use license macro * Wed Jun 17 2015 Fedora Release Engineering - 0.10.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index cdcd16d..30ea20c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b962dc0472be507631f43f70b13b3157 cmdargs-0.10.12.tar.gz +f713f07f1b9081c10c27620b2c807c61 cmdargs-0.10.13.tar.gz From db9892743712b2d6aca3b00f0ab31c63d3df26ea Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Thu, 24 Sep 2015 08:31:04 +0100 Subject: [PATCH 43/76] rebuild for aarch64 hash issue --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 859d845..e4ef593 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.10.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command line argument processing License: BSD @@ -69,6 +69,9 @@ cabal-tweak-flag quotation False %changelog +* Thu Sep 24 2015 Peter Robinson 0.10.12-3 +- rebuild for aarch64 hash issue + * Wed Jun 17 2015 Fedora Release Engineering - 0.10.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 616551f885f52b5d26751ce7823e71be8c72b4c0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 1 Feb 2016 23:44:26 +0900 Subject: [PATCH 44/76] Reverting "use license macro; add tarball" Reverting "update to 0.10.13" This reverts commit ded0b7b6d4b638efff2d1422ce8e991bf7405705. --- .gitignore | 1 - ghc-cmdargs.spec | 36 ++++++++---------------------------- sources | 2 +- 3 files changed, 9 insertions(+), 30 deletions(-) diff --git a/.gitignore b/.gitignore index 06e08e7..bffc27b 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,3 @@ /cmdargs-0.10.2.tar.gz /cmdargs-0.10.3.tar.gz /cmdargs-0.10.12.tar.gz -/cmdargs-0.10.13.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 75896a8..859d845 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -3,8 +3,8 @@ %global pkg_name cmdargs Name: ghc-%{pkg_name} -Version: 0.10.13 -Release: 1%{?dist} +Version: 0.10.12 +Release: 2%{?dist} Summary: Command line argument processing License: BSD @@ -18,28 +18,10 @@ BuildRequires: ghc-filepath-devel BuildRequires: ghc-process-devel BuildRequires: ghc-template-haskell-devel BuildRequires: ghc-transformers-devel -ExclusiveArch: %{ghc_arches_with_ghci} # End cabal-rpm deps %description -This library provides an easy way to define command line parsers. Most users -will want to use the "System.Console.CmdArgs.Implicit" module, whose -documentation contains an example. - -* "System.Console.CmdArgs.Explicit" provides a way to write command line -parsers for both single mode programs (most programs) and multiple mode -programs (e.g. darcs or cabal). Parsers are defined by constructing a data -structure. - -* "System.Console.CmdArgs.Implicit" provides a way to concisely define command -line parsers, up to three times shorter than getopt. These parsers are -translated into the Explicit data type. - -* "System.Console.CmdArgs.GetOpt" provides a wrapper allowing compatiblity with -existing getopt parsers, mapping to the Explicit data type. - -For a general reference on what command line flags are commonly used, see -. +This library provides an easy way to define command line parsers. %package devel @@ -57,6 +39,10 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} +%ifnarch %{ghc_arches_with_ghci} +cabal-tweak-flag quotation False +%endif + %build %ghc_lib_build @@ -65,8 +51,6 @@ This package provides the Haskell %{pkg_name} library development files. %install %ghc_lib_install -rm %{buildroot}%{ghc_pkgdocdir}/LICENSE - %post devel %ghc_pkg_recache @@ -77,7 +61,7 @@ rm %{buildroot}%{ghc_pkgdocdir}/LICENSE %files -f %{name}.files -%license LICENSE +%doc LICENSE %files devel -f %{name}-devel.files @@ -85,10 +69,6 @@ rm %{buildroot}%{ghc_pkgdocdir}/LICENSE %changelog -* Sat Aug 08 2015 Ben Boeckel - 0.10.13-1 -- update to 0.10.13 -- use license macro - * Wed Jun 17 2015 Fedora Release Engineering - 0.10.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 30ea20c..cdcd16d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f713f07f1b9081c10c27620b2c807c61 cmdargs-0.10.13.tar.gz +b962dc0472be507631f43f70b13b3157 cmdargs-0.10.12.tar.gz From 8b57bbe2730cb6f518c76819ee05b0d80e68c429 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 21:28:02 +0000 Subject: [PATCH 45/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index e4ef593..f3c2dbe 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.10.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Command line argument processing License: BSD @@ -69,6 +69,9 @@ cabal-tweak-flag quotation False %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 0.10.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Sep 24 2015 Peter Robinson 0.10.12-3 - rebuild for aarch64 hash issue From 51cbae4221de4c53d0076f5dff197dbd07c5089e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 7 Mar 2016 23:00:55 +0900 Subject: [PATCH 46/76] all arches have ghci now for TH --- ghc-cmdargs.spec | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index f3c2dbe..e8c5ddf 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -39,10 +39,6 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} -%ifnarch %{ghc_arches_with_ghci} -cabal-tweak-flag quotation False -%endif - %build %ghc_lib_build From 0bd5efd3400b8bd31bf1bae0bcdb5c27a9f5dd4f Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 23 Apr 2016 14:06:29 -0400 Subject: [PATCH 47/76] update to 0.10.14 --- .gitignore | 1 + ghc-cmdargs.spec | 11 ++++++++--- sources | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index bffc27b..c077899 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /cmdargs-0.10.2.tar.gz /cmdargs-0.10.3.tar.gz /cmdargs-0.10.12.tar.gz +/cmdargs-0.10.14.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index e8c5ddf..52f44c2 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -3,8 +3,8 @@ %global pkg_name cmdargs Name: ghc-%{pkg_name} -Version: 0.10.12 -Release: 4%{?dist} +Version: 0.10.14 +Release: 1%{?dist} Summary: Command line argument processing License: BSD @@ -47,6 +47,8 @@ This package provides the Haskell %{pkg_name} library development files. %install %ghc_lib_install +rm %{buildroot}%{ghc_pkgdocdir}/LICENSE + %post devel %ghc_pkg_recache @@ -57,7 +59,7 @@ This package provides the Haskell %{pkg_name} library development files. %files -f %{name}.files -%doc LICENSE +%license LICENSE %files devel -f %{name}-devel.files @@ -65,6 +67,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sat Apr 23 2016 Ben Boeckel - 0.10.14-1 +- update to 0.10.14 + * Wed Feb 03 2016 Fedora Release Engineering - 0.10.12-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index cdcd16d..597f929 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b962dc0472be507631f43f70b13b3157 cmdargs-0.10.12.tar.gz +ebc50066c2d38a0ad0f2a446acfea1cd cmdargs-0.10.14.tar.gz From 4a4a45ef45f4c274bbc62e828a2f22c0811f0c3a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 30 Jun 2016 10:49:26 +0900 Subject: [PATCH 48/76] rebuild --- ghc-cmdargs.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 52f44c2..4799e78 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,10 +1,11 @@ +# generated by cabal-rpm-0.9.12 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name cmdargs Name: ghc-%{pkg_name} Version: 0.10.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Command line argument processing License: BSD @@ -67,6 +68,9 @@ rm %{buildroot}%{ghc_pkgdocdir}/LICENSE %changelog +* Thu Jun 30 2016 Jens Petersen - 0.10.14-2 +- rebuild + * Sat Apr 23 2016 Ben Boeckel - 0.10.14-1 - update to 0.10.14 From 3e177a5ca588e521e5138117de2c58b6ea45e26c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 27 Sep 2016 19:15:29 +0900 Subject: [PATCH 49/76] no longer remove license --- ghc-cmdargs.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 4799e78..302e7d3 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -48,8 +48,6 @@ This package provides the Haskell %{pkg_name} library development files. %install %ghc_lib_install -rm %{buildroot}%{ghc_pkgdocdir}/LICENSE - %post devel %ghc_pkg_recache From 48f334dec3811471075dc5f1e34cf5defe6d9581 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 10:35:40 +0000 Subject: [PATCH 50/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 302e7d3..53c61e8 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -5,7 +5,7 @@ Name: ghc-%{pkg_name} Version: 0.10.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command line argument processing License: BSD @@ -66,6 +66,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0.10.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Jun 30 2016 Jens Petersen - 0.10.14-2 - rebuild From 999481e833fdecf051c1f5d5df00c5f93dfcdfb1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 24 Feb 2017 17:48:10 +0900 Subject: [PATCH 51/76] refresh to cabal-rpm-0.11.1 --- ghc-cmdargs.spec | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 53c61e8..a5cb44b 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,16 +1,17 @@ -# generated by cabal-rpm-0.9.12 +# generated by cabal-rpm-0.11.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name cmdargs +%global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} Version: 0.10.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Command line argument processing License: BSD Url: https://hackage.haskell.org/package/%{pkg_name} -Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros @@ -38,7 +39,7 @@ This package provides the Haskell %{pkg_name} library development files. %prep -%setup -q -n %{pkg_name}-%{version} +%setup -q -n %{pkgver} %build @@ -66,6 +67,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Feb 24 2017 Jens Petersen - 0.10.14-4 +- refresh to cabal-rpm-0.11.1 + * Fri Feb 10 2017 Fedora Release Engineering - 0.10.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 3e8bf370ee889688d6d6b9f3a0a656ea0b46d284 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 09:37:45 +0000 Subject: [PATCH 52/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index a5cb44b..7b831e4 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.14 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Command line argument processing License: BSD @@ -67,6 +67,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0.10.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 24 2017 Jens Petersen - 0.10.14-4 - refresh to cabal-rpm-0.11.1 From 6f7cba44fa79693929f5b991d5fc80393fef07c6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 21:15:47 +0000 Subject: [PATCH 53/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 7b831e4..0841400 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.14 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Command line argument processing License: BSD @@ -67,6 +67,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 0.10.14-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0.10.14-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From b39eba38d95c81034da5910fe66e57c845eb84e4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 14:10:46 +0100 Subject: [PATCH 54/76] refresh to cabal-rpm-0.12.1 --- ghc-cmdargs.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 0841400..86cd378 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.11.1 +# generated by cabal-rpm-0.12.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name cmdargs @@ -29,9 +29,12 @@ This library provides an easy way to define command line parsers. %package devel Summary: Haskell %{pkg_name} library development files Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-doc = %{version}-%{release} +%if %{defined ghc_version} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} Requires(postun): ghc-compiler = %{ghc_version} +%endif Requires: %{name}%{?_isa} = %{version}-%{release} %description devel @@ -50,6 +53,12 @@ This package provides the Haskell %{pkg_name} library development files. %ghc_lib_install +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + %post devel %ghc_pkg_recache From 156ba9901dcced1122490080476a4daf6222ae2f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 15:24:08 +0100 Subject: [PATCH 55/76] update to 0.10.19 --- .gitignore | 1 + ghc-cmdargs.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c077899..56b5ef7 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /cmdargs-0.10.3.tar.gz /cmdargs-0.10.12.tar.gz /cmdargs-0.10.14.tar.gz +/cmdargs-0.10.19.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 86cd378..da3ea6b 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -5,8 +5,8 @@ %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 0.10.14 -Release: 6%{?dist} +Version: 0.10.19 +Release: 1%{?dist} Summary: Command line argument processing License: BSD @@ -76,6 +76,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Jan 24 2018 Jens Petersen - 0.10.19-1 +- update to 0.10.19 + * Wed Aug 02 2017 Fedora Release Engineering - 0.10.14-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild diff --git a/sources b/sources index 597f929..cfcfc70 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ebc50066c2d38a0ad0f2a446acfea1cd cmdargs-0.10.14.tar.gz +SHA512 (cmdargs-0.10.19.tar.gz) = 3304b9fc9a36a1cfd91699dfa4f8c2d8206f9475ddbba2b4f4fc277320e428c48f8d424a2044a518396ee8567b2f05ec33be96cbeebd09c5ab3f63efe5b1a130 From 9632128e63df79f3f6250350718c7326e9dbe909 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Feb 2018 01:02:09 +0900 Subject: [PATCH 56/76] drop ldconfig scriptlets --- ghc-cmdargs.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index da3ea6b..1029b58 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -53,12 +53,6 @@ This package provides the Haskell %{pkg_name} library development files. %ghc_lib_install -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - %post devel %ghc_pkg_recache From 55ddc32f6ece7904bbd261891aa189a3410f605a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 11:25:53 +0000 Subject: [PATCH 57/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 1029b58..09fc0ca 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.19 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Command line argument processing License: BSD @@ -70,6 +70,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.10.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Wed Jan 24 2018 Jens Petersen - 0.10.19-1 - update to 0.10.19 From 1819e95357cfc54048817eb3d700f7c436c49cca Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 01:38:46 +0000 Subject: [PATCH 58/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 09fc0ca..10b9127 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.19 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command line argument processing License: BSD @@ -70,6 +70,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.10.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 0.10.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From b9278b908b361ac48c300c017d07709f1afeab2c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 22 Jul 2018 22:54:47 +0900 Subject: [PATCH 59/76] update to 0.10.20 --- .gitignore | 1 + ghc-cmdargs.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 56b5ef7..3e57f87 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /cmdargs-0.10.12.tar.gz /cmdargs-0.10.14.tar.gz /cmdargs-0.10.19.tar.gz +/cmdargs-0.10.20.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 10b9127..287927e 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,12 +1,12 @@ -# generated by cabal-rpm-0.12.1 +# generated by cabal-rpm-0.12.5 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name cmdargs %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 0.10.19 -Release: 3%{?dist} +Version: 0.10.20 +Release: 1%{?dist} Summary: Command line argument processing License: BSD @@ -70,6 +70,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sun Jul 22 2018 Jens Petersen - 0.10.20-1 +- update to 0.10.20 + * Fri Jul 13 2018 Fedora Release Engineering - 0.10.19-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index cfcfc70..56d13f6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (cmdargs-0.10.19.tar.gz) = 3304b9fc9a36a1cfd91699dfa4f8c2d8206f9475ddbba2b4f4fc277320e428c48f8d424a2044a518396ee8567b2f05ec33be96cbeebd09c5ab3f63efe5b1a130 +SHA512 (cmdargs-0.10.20.tar.gz) = b9e270aa5dabd84eaaa47b95a450ef5b5f43cd19646f2a407579f855857d396e5ab9ca0038e1e876849a596ecb8cdc9964c45970825a0a95021d69b23699da79 From 330afc1293b2f3c9f3bc04809d5f8fceb49fae4c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 21:18:08 +0000 Subject: [PATCH 60/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 287927e..8938df2 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.20 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Command line argument processing License: BSD @@ -70,6 +70,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 0.10.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sun Jul 22 2018 Jens Petersen - 0.10.20-1 - update to 0.10.20 From 8c26170ea8f5a6153a825108bd728495cc8bc200 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:43:56 +0800 Subject: [PATCH 61/76] refresh to cabal-rpm-0.13 --- ghc-cmdargs.spec | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 8938df2..dfb34b5 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.5 +# generated by cabal-rpm-0.13 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name cmdargs @@ -6,16 +6,18 @@ Name: ghc-%{pkg_name} Version: 0.10.20 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command line argument processing License: BSD Url: https://hackage.haskell.org/package/%{pkg_name} +# Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +# End cabal-rpm sources +# Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros -# Begin cabal-rpm deps: BuildRequires: ghc-filepath-devel BuildRequires: ghc-process-devel BuildRequires: ghc-template-haskell-devel @@ -42,15 +44,21 @@ This package provides the Haskell %{pkg_name} library development files. %prep +# Begin cabal-rpm setup: %setup -q -n %{pkgver} +# 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 %post devel @@ -62,7 +70,9 @@ This package provides the Haskell %{pkg_name} library development files. %files -f %{name}.files +# Begin cabal-rpm files: %license LICENSE +# End cabal-rpm files %files devel -f %{name}-devel.files @@ -70,6 +80,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sun Feb 17 2019 Jens Petersen - 0.10.20-3 +- refresh to cabal-rpm-0.13 + * Thu Jan 31 2019 Fedora Release Engineering - 0.10.20-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From fb7eb8f95e0160a2ae89c90e68e6bd7cdbe9a982 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 02:14:25 +0000 Subject: [PATCH 62/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index dfb34b5..2536542 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.20 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Command line argument processing License: BSD @@ -80,6 +80,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.10.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 17 2019 Jens Petersen - 0.10.20-3 - refresh to cabal-rpm-0.13 From ac2990f6bf21af4ea88a0290f6da891912e35eaf Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:22:10 +0000 Subject: [PATCH 63/76] cabal-rpm-1.0.0: add doc and prof subpkgs --- ghc-cmdargs.spec | 53 ++++++++++++++++++++++++++++++++++++------------ 1 file changed, 40 insertions(+), 13 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 2536542..4df344f 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.13 +# generated by cabal-rpm-1.0.0 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name cmdargs @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.20 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Command line argument processing License: BSD @@ -17,6 +17,12 @@ Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel +%if %{with haddock} +BuildRequires: ghc-doc +%endif +%if %{with ghc_prof} +BuildRequires: ghc-prof +%endif BuildRequires: ghc-rpm-macros BuildRequires: ghc-filepath-devel BuildRequires: ghc-process-devel @@ -31,11 +37,8 @@ This library provides an easy way to define command line parsers. %package devel Summary: Haskell %{pkg_name} library development files Provides: %{name}-static = %{version}-%{release} -Provides: %{name}-doc = %{version}-%{release} %if %{defined ghc_version} Requires: ghc-compiler = %{ghc_version} -Requires(post): ghc-compiler = %{ghc_version} -Requires(postun): ghc-compiler = %{ghc_version} %endif Requires: %{name}%{?_isa} = %{version}-%{release} @@ -43,6 +46,25 @@ Requires: %{name}%{?_isa} = %{version}-%{release} This package provides the Haskell %{pkg_name} library development files. +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation + +%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} + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} @@ -61,14 +83,6 @@ This package provides the Haskell %{pkg_name} library development files. # End cabal-rpm install -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -79,7 +93,20 @@ This package provides the Haskell %{pkg_name} library development files. %doc README.md +%if %{with haddock} +%files doc -f %{name}-doc.files +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + %changelog +* Thu Aug 01 2019 Jens Petersen - 0.10.20-5 +- add doc and prof subpackages (cabal-rpm-1.0.0) + * Thu Jul 25 2019 Fedora Release Engineering - 0.10.20-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 7fcd5d2846d32b2832b931c8aa873099bb216b20 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:28:08 +0800 Subject: [PATCH 64/76] BR prof for lib and static for executable --- ghc-cmdargs.spec | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 4df344f..a8273b2 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-1.0.0 +# generated by cabal-rpm-1.0.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name cmdargs @@ -17,17 +17,12 @@ Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel -%if %{with haddock} -BuildRequires: ghc-doc -%endif -%if %{with ghc_prof} -BuildRequires: ghc-prof -%endif BuildRequires: ghc-rpm-macros -BuildRequires: ghc-filepath-devel -BuildRequires: ghc-process-devel -BuildRequires: ghc-template-haskell-devel -BuildRequires: ghc-transformers-devel +BuildRequires: ghc-base-prof +BuildRequires: ghc-filepath-prof +BuildRequires: ghc-process-prof +BuildRequires: ghc-template-haskell-prof +BuildRequires: ghc-transformers-prof # End cabal-rpm deps %description @@ -37,6 +32,7 @@ This library provides an easy way to define command line parsers. %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 From 0075b2df9e0e54bc83d21e45f807b08b43a8102e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 20:25:47 +0000 Subject: [PATCH 65/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index a8273b2..15b6d6c 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.20 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Command line argument processing License: BSD @@ -100,6 +100,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 0.10.20-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Aug 01 2019 Jens Petersen - 0.10.20-5 - add doc and prof subpackages (cabal-rpm-1.0.0) From a1159e2fb37289102b0581c65657e61618bb5ac1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:49:25 +0800 Subject: [PATCH 66/76] refresh to cabal-rpm-2.0.2 --- ghc-cmdargs.spec | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 15b6d6c..525a04a 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-1.0.1 +# generated by cabal-rpm-2.0.2 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name cmdargs @@ -45,6 +45,7 @@ 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. @@ -55,6 +56,7 @@ This package provides the Haskell %{pkg_name} library documentation. %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. @@ -79,6 +81,16 @@ This package provides the Haskell %{pkg_name} profiling library. # End cabal-rpm install +%if 0%{?fedora} < 31 || 0%{?rhel} < 8 +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache +%endif + + %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -91,6 +103,7 @@ This package provides the Haskell %{pkg_name} profiling library. %if %{with haddock} %files doc -f %{name}-doc.files +%license LICENSE %endif From 054e0297e515aa667a9ebf9e805dc12a4533228d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:25:39 +0800 Subject: [PATCH 67/76] refresh to cabal-rpm-2.0.5 --- ghc-cmdargs.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 525a04a..35e5856 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,5 +1,5 @@ -# generated by cabal-rpm-2.0.2 -# https://fedoraproject.org/wiki/Packaging:Haskell +# generated by cabal-rpm-2.0.5 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name cmdargs %global pkgver %{pkg_name}-%{version} From f6ec0bcd0d2f20d68770f92b59bbbba949a4e1c7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:54:16 +0800 Subject: [PATCH 68/76] refresh to cabal-rpm-2.0.6 --- ghc-cmdargs.spec | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 35e5856..b2644cd 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-2.0.5 +# generated by cabal-rpm-2.0.6 # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name cmdargs @@ -81,16 +81,6 @@ This package provides the Haskell %{pkg_name} profiling library. # End cabal-rpm install -%if 0%{?fedora} < 31 || 0%{?rhel} < 8 -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache -%endif - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE From 98793c03ebd018eb80fd1d019d1450f36c6c9b78 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jul 2020 17:58:40 +0800 Subject: [PATCH 69/76] bump release --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index b2644cd..c3263ba 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.20 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Command line argument processing License: BSD @@ -103,6 +103,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Fri Jul 17 2020 Jens Petersen - 0.10.20-7 +- refresh to cabal-rpm-2.0.6 + * Tue Jan 28 2020 Fedora Release Engineering - 0.10.20-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 17117aee44e1418aa62a0342fd3f0941ecdaaa06 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 18:55:33 +0000 Subject: [PATCH 70/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index c3263ba..0743c20 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.20 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Command line argument processing License: BSD @@ -103,6 +103,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 0.10.20-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jul 17 2020 Jens Petersen - 0.10.20-7 - refresh to cabal-rpm-2.0.6 From 0abdf0e3b082b9a1855f8fbf5a812ea40945cba8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 06:59:35 +0000 Subject: [PATCH 71/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 0743c20..da69195 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.20 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Command line argument processing License: BSD @@ -103,6 +103,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.10.20-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 0.10.20-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 74e9f79ffadf62c4f7f8c18db4e93c71102aa987 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 00:26:45 +0000 Subject: [PATCH 72/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index da69195..cf23c24 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.20 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Command line argument processing License: BSD @@ -103,6 +103,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.10.20-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.10.20-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From f978a48df4c0b1a2938cb924f0c8fac5c1f5e1f8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 00:30:10 +0800 Subject: [PATCH 73/76] refresh to cabal-rpm-2.0.9 --- ghc-cmdargs.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index cf23c24..f4a4146 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.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 cmdargs @@ -46,6 +46,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 289469d19c8c080031b611b1ab572e28a7d879aa Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 01:43:51 +0800 Subject: [PATCH 74/76] update to 0.10.21 --- .gitignore | 1 + ghc-cmdargs.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3e57f87..7fa2a81 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /cmdargs-0.10.14.tar.gz /cmdargs-0.10.19.tar.gz /cmdargs-0.10.20.tar.gz +/cmdargs-0.10.21.tar.gz diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index f4a4146..983d7d5 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -5,8 +5,8 @@ %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 0.10.20 -Release: 10%{?dist} +Version: 0.10.21 +Release: 1%{?dist} Summary: Command line argument processing License: BSD @@ -104,6 +104,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Aug 5 2021 Jens Petersen - 0.10.21-1 +- update to 0.10.21 + * Thu Jul 22 2021 Fedora Release Engineering - 0.10.20-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 56d13f6..5f7ccdf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (cmdargs-0.10.20.tar.gz) = b9e270aa5dabd84eaaa47b95a450ef5b5f43cd19646f2a407579f855857d396e5ab9ca0038e1e876849a596ecb8cdc9964c45970825a0a95021d69b23699da79 +SHA512 (cmdargs-0.10.21.tar.gz) = f17b7f56c9382a4ea3235b2d7669866e0ea366ab7c30984dc3f017f18d25015508f5cbce535eec4a601c09a33cffabe71b8da5cc15d301daf6ed3f3e40dbd2af From 11819e273d273c307615c73036dac54b24183a00 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 04:39:29 +0000 Subject: [PATCH 75/76] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-cmdargs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-cmdargs.spec b/ghc-cmdargs.spec index 983d7d5..b8bcdf8 100644 --- a/ghc-cmdargs.spec +++ b/ghc-cmdargs.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.10.21 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Command line argument processing License: BSD @@ -104,6 +104,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.10.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Aug 5 2021 Jens Petersen - 0.10.21-1 - update to 0.10.21 From 89e05604132355ea8a3b5374abe9282054164a44 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 21:29:06 +0300 Subject: [PATCH 76/76] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index 5f7ccdf..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (cmdargs-0.10.21.tar.gz) = f17b7f56c9382a4ea3235b2d7669866e0ea366ab7c30984dc3f017f18d25015508f5cbce535eec4a601c09a33cffabe71b8da5cc15d301daf6ed3f3e40dbd2af