Changeset 1839 for branches/fc15-dev/server/fedora
- Timestamp:
- May 2, 2011, 5:54:10 PM (14 years ago)
- Location:
- branches/fc15-dev/server/fedora/specs
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/fc15-dev/server/fedora/specs/ghc-MonadCatchIO-mtl.spec
r1833 r1839 1 # For Haskell Packaging Guidelines see:2 # - https://fedoraproject.org/wiki/Packaging:Haskell3 # - https://fedoraproject.org/wiki/PackagingDrafts/Haskell4 5 1 %global pkg_name MonadCatchIO-mtl 6 2 7 # common part of summary for all the subpackages8 3 %global common_summary Haskell %{pkg_name} library 9 4 10 # main description used for all the subpackages11 5 %global common_description A %{pkg_name} library for Haskell. 12 6 13 # add any Haskell library dependencies here: 7 # add any Haskell library dependencies here: 14 8 %global ghc_pkg_deps ghc-mtl-devel 15 9 16 # Haskell library dependencies (used for buildrequires and devel/prof subpkg requires) 17 #%%global ghc_pkg_deps ghc-@DEP1@-devel, ghc-@DEP2@-devel 18 19 # foreign library dependencies (used for buildrequires and devel subpkg requires) 10 # add any foreign library dependencies here: 20 11 #%%global ghc_pkg_c_deps @CDEP1@-devel 21 12 … … 26 17 27 18 Name: ghc-%{pkg_name} 28 Version: 0.3.0. 229 Release: 1.%{scriptsversion}%{?dist}19 Version: 0.3.0.1 20 Release: 0.%{scriptsversion}%{?dist} 30 21 Summary: %{common_summary} 31 22 32 23 Group: System Environment/Libraries 33 24 License: BSD 34 URL: http://hackage.haskell.org/ package/%{pkg_name}25 URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{pkg_name} 35 26 Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz 27 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) 36 28 # fedora ghc archs: 37 ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv929 ExclusiveArch: %{ix86} x86_64 ppc alpha 38 30 BuildRequires: ghc, ghc-doc, ghc-prof 39 # macros for building haskell packages 40 BuildRequires: ghc-rpm-macros >= 0.7.3 41 BuildRequires: hscolour 31 BuildRequires: ghc-rpm-macros >= 0.7.0 42 32 %{?ghc_pkg_deps:BuildRequires: %{ghc_pkg_deps}, %(echo %{ghc_pkg_deps} | sed -e "s/\(ghc-[^, ]\+\)-devel/\1-doc,\1-prof/g")} 43 33 %{?ghc_pkg_c_deps:BuildRequires: %{ghc_pkg_c_deps}} … … 45 35 %description 46 36 %{common_description} 37 %if %{with shared} 38 This package provides the shared library. 39 %endif 40 41 42 %{?ghc_lib_package} 47 43 48 44 … … 56 52 57 53 %install 54 rm -rf $RPM_BUILD_ROOT 58 55 %ghc_lib_install 59 56 60 57 61 # define the devel and prof subpkgs, devel post[un] scripts, and filelists: 62 # ghc-%pkg_name{,devel,prof}.files 63 %ghc_lib_package 58 %clean 59 rm -rf $RPM_BUILD_ROOT 64 60 65 61 66 62 %changelog 67 * Sat Apr 16 2011 Alexander Chernyakhovsky <achernya@mit.edu> - 0.3.0.2-168 - regenerated packaging for Fedora automatically generated by cabal2spec-0.22.569 70 63 * Thu Sep 9 2010 Anders Kaseorg <andersk@mit.edu> - 0.3.0.1-0 71 64 - initial packaging for Fedora automatically generated by cabal2spec-0.22.1 -
branches/fc15-dev/server/fedora/specs/ghc-cgi.spec
r1834 r1839 1 # For Haskell Packaging Guidelines see:2 # - https://fedoraproject.org/wiki/Packaging:Haskell3 # - https://fedoraproject.org/wiki/PackagingDrafts/Haskell4 5 1 %global pkg_name cgi 6 2 7 # common part of summary for all the subpackages8 3 %global common_summary Haskell %{pkg_name} library 9 4 10 # main description used for all the subpackages11 5 %global common_description A %{pkg_name} library for Haskell. 12 6 13 # Haskell library dependencies (used for buildrequires and devel/prof subpkg requires)7 # add any Haskell library dependencies here: 14 8 %global ghc_pkg_deps ghc-network-devel, ghc-parsec-devel, ghc-mtl-devel, ghc-MonadCatchIO-mtl-devel, ghc-xhtml-devel 15 9 16 # foreign library dependencies (used for buildrequires and devel subpkg requires)10 # add any foreign library dependencies here: 17 11 #%%global ghc_pkg_c_deps @CDEP1@-devel 18 12 13 %bcond_without shared 14 15 # debuginfo is not useful for ghc 16 %global debug_package %{nil} 17 19 18 Name: ghc-%{pkg_name} 20 Version: 3001.1.8. 219 Version: 3001.1.8.1 21 20 Release: 0.%{scriptsversion}%{?dist} 22 21 Summary: %{common_summary} … … 24 23 Group: System Environment/Libraries 25 24 License: BSD 26 URL: http://hackage.haskell.org/ package/%{pkg_name}25 URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{pkg_name} 27 26 Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz 27 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) 28 28 # fedora ghc archs: 29 ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv929 ExclusiveArch: %{ix86} x86_64 ppc alpha 30 30 BuildRequires: ghc, ghc-doc, ghc-prof 31 # macros for building haskell packages 32 BuildRequires: ghc-rpm-macros >= 0.7.3 33 BuildRequires: hscolour 31 BuildRequires: ghc-rpm-macros >= 0.7.0 34 32 %{?ghc_pkg_deps:BuildRequires: %{ghc_pkg_deps}, %(echo %{ghc_pkg_deps} | sed -e "s/\(ghc-[^, ]\+\)-devel/\1-doc,\1-prof/g")} 35 33 %{?ghc_pkg_c_deps:BuildRequires: %{ghc_pkg_c_deps}} … … 37 35 %description 38 36 %{common_description} 37 %if %{with shared} 38 This package provides the shared library. 39 %endif 40 41 42 %{?ghc_lib_package} 39 43 40 44 … … 48 52 49 53 %install 54 rm -rf $RPM_BUILD_ROOT 50 55 %ghc_lib_install 51 56 52 57 53 # define the devel and prof subpkgs, devel post[un] scripts, and filelists: 54 # ghc-%pkg_name{,devel,prof}.files 55 %ghc_lib_package 58 %clean 59 rm -rf $RPM_BUILD_ROOT 56 60 57 61 58 62 %changelog 59 * Sat Apr 16 2011 Alexander Chernyakhovsky <achernya@mit.edu> - 3001.1.8.2-060 - regenerated with cabal2spec-0.22.561 62 63 * Thu Sep 9 2010 Anders Kaseorg <andersk@mit.edu> - 3001.1.8.1-0 63 64 - initial packaging for Fedora automatically generated by cabal2spec-0.22.1 -
branches/fc15-dev/server/fedora/specs/ghc-unix-handle.spec
r1833 r1839 1 # For Haskell Packaging Guidelines see:2 # - https://fedoraproject.org/wiki/Packaging:Haskell3 # - https://fedoraproject.org/wiki/PackagingDrafts/Haskell4 5 1 %global pkg_name unix-handle 6 2 7 # common part of summary for all the subpackages8 3 %global common_summary Haskell %{pkg_name} library 9 4 10 # main description used for all the subpackages11 5 %global common_description A %{pkg_name} library for Haskell. 12 6 13 # Haskell library dependencies (used for buildrequires and devel/prof subpkg requires)7 # add any Haskell library dependencies here: 14 8 #%%global ghc_pkg_deps ghc-@DEP1@-devel, ghc-@DEP2@-devel 15 9 16 # foreign library dependencies (used for buildrequires and devel subpkg requires)10 # add any foreign library dependencies here: 17 11 #%%global ghc_pkg_c_deps @CDEP1@-devel 12 13 %bcond_without shared 14 15 # debuginfo is not useful for ghc 16 %global debug_package %{nil} 18 17 19 18 Name: ghc-%{pkg_name} … … 24 23 Group: System Environment/Libraries 25 24 License: BSD 26 URL: http://hackage.haskell.org/ package/%{pkg_name}25 URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{pkg_name} 27 26 Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz 27 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) 28 28 # fedora ghc archs: 29 ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv929 ExclusiveArch: %{ix86} x86_64 ppc alpha 30 30 BuildRequires: ghc, ghc-doc, ghc-prof 31 # macros for building haskell packages 32 BuildRequires: ghc-rpm-macros >= 0.7.3 33 BuildRequires: hscolour 31 BuildRequires: ghc-rpm-macros >= 0.7.0 34 32 %{?ghc_pkg_deps:BuildRequires: %{ghc_pkg_deps}, %(echo %{ghc_pkg_deps} | sed -e "s/\(ghc-[^, ]\+\)-devel/\1-doc,\1-prof/g")} 35 33 %{?ghc_pkg_c_deps:BuildRequires: %{ghc_pkg_c_deps}} … … 37 35 %description 38 36 %{common_description} 37 %if %{with shared} 38 This package provides the shared library. 39 %endif 40 41 42 %{?ghc_lib_package} 39 43 40 44 … … 48 52 49 53 %install 54 rm -rf $RPM_BUILD_ROOT 50 55 %ghc_lib_install 51 56 52 57 53 # define the devel and prof subpkgs, devel post[un] scripts, and filelists: 54 # ghc-%pkg_name{,devel,prof}.files 55 %ghc_lib_package 58 %clean 59 rm -rf $RPM_BUILD_ROOT 56 60 57 61 58 62 %changelog 59 * Sat Apr 30 2011 Alexander Chernyakhovsky <achernya@mit.edu> - 0.0.0-060 - regenerated packaging for Fedora automatically generated by cabal2spec-0.22.561 62 63 * Thu Sep 9 2010 Anders Kaseorg <andersk@mit.edu> - 0.0.0-0 63 64 - initial packaging for Fedora automatically generated by cabal2spec-0.22.1 -
branches/fc15-dev/server/fedora/specs/scripts-static-cat.spec
r1831 r1839 1 # For Haskell Packaging Guidelines see: 2 # - https://fedoraproject.org/wiki/Packaging:Haskell 3 # - https://fedoraproject.org/wiki/PackagingDrafts/Haskell 1 # link with shared libs 2 # andersk: Disabled for 3x faster startup speed. 3 #%%bcond_without dynamic 4 5 # ghc does not emit debug information 6 %global debug_package %{nil} 4 7 5 8 Name: scripts-static-cat … … 10 13 Group: Applications/System 11 14 License: GPL 12 URL: http://scripts.mit.edu 15 URL: http://scripts.mit.edu/ 13 16 Source0: %{name}.tar.gz 14 17 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) 15 18 # fedora ghc archs: 16 ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 17 BuildRequires: ghc-devel 18 # macros for building haskell packages 19 ExclusiveArch: %{ix86} x86_64 ppc alpha 20 BuildRequires: ghc 19 21 BuildRequires: ghc-rpm-macros >= 0.7.0 20 22 BuildRequires: ghc-cgi-devel >= 3001.1.8, ghc-MonadCatchIO-mtl-devel, ghc-unix-handle-devel … … 33 35 34 36 %install 37 rm -rf $RPM_BUILD_ROOT 35 38 %ghc_bin_install 39 40 41 %clean 42 rm -rf $RPM_BUILD_ROOT 36 43 37 44 … … 42 49 43 50 %changelog 44 * Sat Apr 30 2011 Alexander Chernyakhovsky <achernya@mit.edu> - 0.0-045 - regenerated packaging for Fedora automatically generated by cabal2spec-0.22.546 47 51 * Thu Sep 9 2010 Anders Kaseorg <andersk@mit.edu> - 0.0-0 48 52 - initial packaging for Fedora automatically generated by cabal2spec-0.22.1
Note: See TracChangeset
for help on using the changeset viewer.