diff options
author | CoprDistGit <infra@openeuler.org> | 2023-10-30 07:43:37 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-10-30 07:43:37 +0000 |
commit | e6e79e9bcf7c9ce49fb5796af728f149d9f3ba65 (patch) | |
tree | ee4867267785ac1b1b63945575594adcde22b961 | |
parent | f1d475510da081e428d09dd221616e24946a56f9 (diff) |
automatic import of ghc-string-conversionsopeneuler23.09
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | ghc-string-conversions.spec | 96 | ||||
-rw-r--r-- | sources | 1 | ||||
-rwxr-xr-x | string-conversions.cabal | 58 |
4 files changed, 156 insertions, 0 deletions
@@ -0,0 +1 @@ +/string-conversions-0.4.0.1.tar.gz diff --git a/ghc-string-conversions.spec b/ghc-string-conversions.spec new file mode 100644 index 0000000..3aa5cf6 --- /dev/null +++ b/ghc-string-conversions.spec @@ -0,0 +1,96 @@ +%global pkg_name string-conversions +%global pkgver %{pkg_name}-%{version} +%bcond_with tests + +Name: ghc-%{pkg_name} +Version: 0.4.0.1 +Release: 1 +Summary: Simplifies dealing with different types for strings +License: BSD-3-Clause +URL: https://hackage.haskell.org/package/%{pkg_name} +Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-base-devel +BuildRequires: ghc-base-prof +BuildRequires: ghc-bytestring-devel +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-text-devel +BuildRequires: ghc-text-prof +BuildRequires: ghc-utf8-string-devel +BuildRequires: ghc-utf8-string-prof +ExcludeArch: %{ix86} +%if %{with tests} +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-QuickCheck-prof +BuildRequires: ghc-deepseq-devel +BuildRequires: ghc-deepseq-prof +BuildRequires: ghc-hspec-devel +BuildRequires: ghc-hspec-prof +BuildRequires: ghc-quickcheck-instances-devel +BuildRequires: ghc-quickcheck-instances-prof +%endif + +%description +Provides a simple type class for converting values of different string types +into values of other string types. + +%package devel +Summary: Haskell %{pkg_name} library development files +Requires: %{name} = %{version}-%{release} +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} + +%description devel +This package provides the Haskell %{pkg_name} library development +files. + +%package -n ghc-%{pkg_name}-help +Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch + +%description -n ghc-%{pkg_name}-help +This package provides the Haskell %{pkg_name} library documentation. + +%package -n ghc-%{pkg_name}-prof +Summary: Haskell %{pkg_name} profiling library +Requires: ghc-%{pkg_name}-devel = %{version}-%{release} +Supplements: (ghc-%{pkg_name}-devel and ghc-prof) + +%description -n ghc-%{pkg_name}-prof +This package provides the Haskell %{pkg_name} profiling library. + +%prep +%autosetup -n %{pkg_name}-%{version} +cp -p %{SOURCE1} %{pkg_name}.cabal + +%build +%ghc_lib_build + +%install +%ghc_lib_install + +%check +%cabal_test + +%post devel +%ghc_pkg_recache + +%postun devel +%ghc_pkg_recache + +%files -f %{name}.files +%license LICENSE + +%files devel -f %{name}-devel.files + +%files -n ghc-%{pkg_name}-help -f ghc-%{pkg_name}-help.files +%license LICENSE + +%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files + +%changelog +* Thu Sep 28 2023 Lin Runze <lrzlin@163.com> 0.4.0.1-1 +- Initial packaging (Version 0.4.0.1) @@ -0,0 +1 @@ +6431b94736bc3eea92aa8f7fe46a3991 string-conversions-0.4.0.1.tar.gz diff --git a/string-conversions.cabal b/string-conversions.cabal new file mode 100755 index 0000000..c129bc8 --- /dev/null +++ b/string-conversions.cabal @@ -0,0 +1,58 @@ +-- This file has been generated from package.yaml by hpack version 0.15.0.
+--
+-- see: https://github.com/sol/hpack
+
+name: string-conversions
+version: 0.4.0.1
+x-revision: 1
+synopsis: Simplifies dealing with different types for strings
+description: Provides a simple type class for converting values of different string types into values of other string types.
+license: BSD3
+license-file: LICENSE
+tested-with: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1, GHC == 8.0.1
+author: Sönke Hahn
+maintainer: soenkehahn@gmail.com
+category: Data
+homepage: https://github.com/soenkehahn/string-conversions#readme
+bug-reports: https://github.com/soenkehahn/string-conversions/issues
+build-type: Simple
+cabal-version: >= 1.10
+
+source-repository head
+ type: git
+ location: https://github.com/soenkehahn/string-conversions
+
+library
+ hs-source-dirs:
+ src
+ default-language: Haskell2010
+ build-depends:
+ base == 4.*,
+ bytestring >= 0.9,
+ text >= 0.11,
+ utf8-string >= 0.3.1
+ exposed-modules:
+ Data.String.Conversions
+ Data.String.Conversions.Monomorphic
+ ghc-options: -Wall
+
+test-suite spec
+ type: exitcode-stdio-1.0
+ main-is: Spec.hs
+ hs-source-dirs:
+ test,
+ src
+ build-depends:
+ base == 4.*,
+ bytestring >= 0.9,
+ text >= 0.11,
+ utf8-string >= 0.3.1,
+ hspec,
+ quickcheck-instances,
+ deepseq,
+ QuickCheck
+ other-modules:
+ Data.String.ConversionsSpec
+ Data.String.Conversions
+ Data.String.Conversions.Monomorphic
+ default-language: Haskell2010
|