refresh to cabal-rpm-0.13

This commit is contained in:
Jens Petersen 2019-02-17 22:45:09 +08:00
parent 1029fe028e
commit 5abc3477fe
2 changed files with 58 additions and 45 deletions

View File

@ -1,4 +1,4 @@
# generated by cabal-rpm-0.12.5 # generated by cabal-rpm-0.13
# https://fedoraproject.org/wiki/Packaging:Haskell # https://fedoraproject.org/wiki/Packaging:Haskell
%global pkg_name hslua-module-text %global pkg_name hslua-module-text
@ -8,17 +8,19 @@
Name: ghc-%{pkg_name} Name: ghc-%{pkg_name}
Version: 0.1.2.1 Version: 0.1.2.1
Release: 7%{?dist} Release: 8%{?dist}
Summary: Lua module for text Summary: Lua module for text
License: MIT License: MIT
Url: https://hackage.haskell.org/package/%{pkg_name} Url: https://hackage.haskell.org/package/%{pkg_name}
# Begin cabal-rpm sources:
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal
# End cabal-rpm sources
# Begin cabal-rpm deps:
BuildRequires: ghc-Cabal-devel BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros BuildRequires: ghc-rpm-macros
# Begin cabal-rpm deps:
BuildRequires: ghc-hslua-devel BuildRequires: ghc-hslua-devel
BuildRequires: ghc-text-devel BuildRequires: ghc-text-devel
%if %{with tests} %if %{with tests}
@ -48,16 +50,22 @@ files.
%prep %prep
# Begin cabal-rpm setup:
%setup -q -n %{pkgver} %setup -q -n %{pkgver}
cp -p %{SOURCE1} %{pkg_name}.cabal cp -bp %{SOURCE1} %{pkg_name}.cabal
# End cabal-rpm setup
%build %build
# Begin cabal-rpm build:
%ghc_lib_build %ghc_lib_build
# End cabal-rpm build
%install %install
# Begin cabal-rpm install
%ghc_lib_install %ghc_lib_install
# End cabal-rpm install
%check %check
@ -73,7 +81,9 @@ cp -p %{SOURCE1} %{pkg_name}.cabal
%files -f %{name}.files %files -f %{name}.files
# Begin cabal-rpm files:
%license LICENSE %license LICENSE
# End cabal-rpm files
%files devel -f %{name}-devel.files %files devel -f %{name}-devel.files
@ -81,6 +91,9 @@ cp -p %{SOURCE1} %{pkg_name}.cabal
%changelog %changelog
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 0.1.2.1-8
- refresh to cabal-rpm-0.13
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.2.1-7 * Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.2.1-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild

View File

@ -1,41 +1,41 @@
name: hslua-module-text name: hslua-module-text
version: 0.1.2.1 version: 0.1.2.1
x-revision: 1 x-revision: 1
synopsis: Lua module for text synopsis: Lua module for text
description: UTF-8 aware subset of Lua's `string` module. description: UTF-8 aware subset of Lua's `string` module.
homepage: https://github.com/hslua/hslua-module-test homepage: https://github.com/hslua/hslua-module-test
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Albert Krewinkel author: Albert Krewinkel
maintainer: albert+hslua@zeitkraut.de maintainer: albert+hslua@zeitkraut.de
copyright: © 2017 Albert Krewinkel copyright: © 2017 Albert Krewinkel
category: Foreign category: Foreign
build-type: Simple build-type: Simple
extra-source-files: ChangeLog.md extra-source-files: ChangeLog.md
test/hstext-test.lua test/hstext-test.lua
cabal-version: >=1.10 cabal-version: >=1.10
source-repository head source-repository head
type: git type: git
location: https://github.com/hslua/hslua-module-text.git location: https://github.com/hslua/hslua-module-text.git
library library
exposed-modules: Foreign.Lua.Module.Text exposed-modules: Foreign.Lua.Module.Text
build-depends: base >= 4.7 && < 5 build-depends: base >= 4.7 && < 5
, hslua >= 0.9 && < 0.10 , hslua >= 0.9 && < 0.10
, text >= 1 && < 1.3 , text >= 1 && < 1.3
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
test-suite test-hslua test-suite test-hslua
default-language: Haskell2010 default-language: Haskell2010
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
main-is: test-hslua-module-text.hs main-is: test-hslua-module-text.hs
hs-source-dirs: test hs-source-dirs: test
ghc-options: -Wall -threaded ghc-options: -Wall -threaded
build-depends: base build-depends: base
, hslua , hslua
, hslua-module-text , hslua-module-text
, tasty , tasty
, tasty-hunit , tasty-hunit
, text , text