forked from pool/ghc-hashable
Accepting request 185255 from devel:languages:haskell:platform
New package for Haskell Platform 2013.2.0.0. See http://lists.opensuse.org/opensuse-factory/2013-07/msg00409.html OBS-URL: https://build.opensuse.org/request/show/185255 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hashable?expand=0&rev=2
This commit is contained in:
parent
a0fecb406f
commit
32c98042b4
2
_service
2
_service
@ -1,3 +1,3 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="download_files"/>
|
<service name="download_files" mode="localonly"/>
|
||||||
</services>
|
</services>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9a76e6e64996c5050dc76cbaa842c1b37559c18322c69e5a72460a46c62269a7
|
|
||||||
size 8685
|
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 6 14:55:41 UTC 2013 - peter.trommler@ohm-hochschule.de
|
||||||
|
|
||||||
|
- update to 1.1.2.5 from upstream
|
||||||
|
* changelog not updated since 1.1.1.0
|
||||||
|
- version required for Haskell Platform 2013.2
|
||||||
|
- more transparent packaging (fewer macros)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 7 19:07:50 UTC 2012 - herbert@graeber-clan.de
|
Thu Jun 7 19:07:50 UTC 2012 - herbert@graeber-clan.de
|
||||||
|
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for ghc-hashable
|
# spec file for package ghc-hashable
|
||||||
#
|
#
|
||||||
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2012 Herbert Graeber <herbert@graeber-clan.de>
|
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,59 +15,65 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# cabal2spec-0.25
|
|
||||||
# https://fedoraproject.org/wiki/Packaging:Haskell
|
|
||||||
# https://fedoraproject.org/wiki/PackagingDrafts/Haskell
|
|
||||||
|
|
||||||
%global pkg_name hashable
|
%global pkg_name hashable
|
||||||
|
|
||||||
%global common_summary Haskell %{pkg_name} library
|
%global common_summary Haskell class for types that can be converted to a hash value
|
||||||
|
|
||||||
%global common_description A %{pkg_name} library for Haskell.
|
%global common_description This package defines a Haskell class, Hashable, for types that can be converted to a hash value. This class exists for the benefit of hashing-based data structures. The package provides instances for basic types and a way to combine hash values.
|
||||||
|
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-hashable
|
||||||
Version: 1.1.2.3
|
Version: 1.1.2.5
|
||||||
Release: 1
|
Release: 0
|
||||||
Summary: %{common_summary}
|
Summary: %{common_summary}
|
||||||
|
|
||||||
Group: System/Libraries
|
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
|
Group: System/Libraries
|
||||||
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# BEGIN cabal2spec
|
# BEGIN cabal2spec
|
||||||
URL: http://hackage.haskell.org/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
|
Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
|
||||||
ExclusiveArch: %{ix86} x86_64 %{ghc_arches}
|
ExclusiveArch: %{ix86} x86_64 %{ghc_arches}
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-rpm-macros %{!?without_hscolour:hscolour}
|
BuildRequires: ghc-rpm-macros
|
||||||
BuildRequires: ghc-text-devel
|
BuildRequires: ghc-text-devel
|
||||||
# END cabal2spec
|
# END cabal2spec
|
||||||
|
|
||||||
%description
|
%description
|
||||||
%{common_description}
|
%{common_description}
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Haskell %{pkg_name} library development files
|
||||||
|
Group: Development/Languages/Other
|
||||||
|
Requires: ghc-compiler
|
||||||
|
Requires(post): ghc-compiler
|
||||||
|
Requires(postun): ghc-compiler
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
%{common_description}
|
||||||
|
This package contains the development files.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pkg_name}-%{version}
|
%setup -q -n %{pkg_name}-%{version}
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build
|
%ghc_lib_build
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%ghc_lib_install
|
%ghc_lib_install
|
||||||
|
|
||||||
|
%post devel
|
||||||
|
%ghc_pkg_recache
|
||||||
|
|
||||||
# devel subpackage
|
%postun devel
|
||||||
%ghc_devel_package
|
%ghc_pkg_recache
|
||||||
|
|
||||||
%ghc_devel_description
|
%files -f %{name}.files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc LICENSE README.md
|
||||||
%ghc_devel_post_postun
|
|
||||||
|
|
||||||
|
|
||||||
%ghc_files LICENSE
|
|
||||||
|
|
||||||
|
%files devel -f %{name}-devel.files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
3
hashable-1.1.2.5.tar.gz
Normal file
3
hashable-1.1.2.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3fb5d430c9289ebada4991a76fd78f028aaaf17957dc666ddc7b89c98a54713d
|
||||||
|
size 9129
|
Loading…
x
Reference in New Issue
Block a user