refresh to cabal-rpm-0.13
This commit is contained in:
parent
1029fe028e
commit
5abc3477fe
@ -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 hslua-module-text
|
||||
@ -8,17 +8,19 @@
|
||||
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.1.2.1
|
||||
Release: 7%{?dist}
|
||||
Release: 8%{?dist}
|
||||
Summary: Lua module for text
|
||||
|
||||
License: MIT
|
||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||
# Begin cabal-rpm sources:
|
||||
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
||||
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-rpm-macros
|
||||
# Begin cabal-rpm deps:
|
||||
BuildRequires: ghc-hslua-devel
|
||||
BuildRequires: ghc-text-devel
|
||||
%if %{with tests}
|
||||
@ -48,16 +50,22 @@ files.
|
||||
|
||||
|
||||
%prep
|
||||
# Begin cabal-rpm setup:
|
||||
%setup -q -n %{pkgver}
|
||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||
cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||
# 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
|
||||
|
||||
|
||||
%check
|
||||
@ -73,7 +81,9 @@ cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||
|
||||
|
||||
%files -f %{name}.files
|
||||
# Begin cabal-rpm files:
|
||||
%license LICENSE
|
||||
# End cabal-rpm files
|
||||
|
||||
|
||||
%files devel -f %{name}-devel.files
|
||||
@ -81,6 +91,9 @@ cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||
|
||||
|
||||
%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
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
|
@ -1,41 +1,41 @@
|
||||
name: hslua-module-text
|
||||
version: 0.1.2.1
|
||||
x-revision: 1
|
||||
synopsis: Lua module for text
|
||||
description: UTF-8 aware subset of Lua's `string` module.
|
||||
homepage: https://github.com/hslua/hslua-module-test
|
||||
license: MIT
|
||||
license-file: LICENSE
|
||||
author: Albert Krewinkel
|
||||
maintainer: albert+hslua@zeitkraut.de
|
||||
copyright: © 2017 Albert Krewinkel
|
||||
category: Foreign
|
||||
build-type: Simple
|
||||
extra-source-files: ChangeLog.md
|
||||
test/hstext-test.lua
|
||||
cabal-version: >=1.10
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/hslua/hslua-module-text.git
|
||||
|
||||
library
|
||||
exposed-modules: Foreign.Lua.Module.Text
|
||||
build-depends: base >= 4.7 && < 5
|
||||
, hslua >= 0.9 && < 0.10
|
||||
, text >= 1 && < 1.3
|
||||
hs-source-dirs: src
|
||||
default-language: Haskell2010
|
||||
|
||||
test-suite test-hslua
|
||||
default-language: Haskell2010
|
||||
type: exitcode-stdio-1.0
|
||||
main-is: test-hslua-module-text.hs
|
||||
hs-source-dirs: test
|
||||
ghc-options: -Wall -threaded
|
||||
build-depends: base
|
||||
, hslua
|
||||
, hslua-module-text
|
||||
, tasty
|
||||
, tasty-hunit
|
||||
, text
|
||||
name: hslua-module-text
|
||||
version: 0.1.2.1
|
||||
x-revision: 1
|
||||
synopsis: Lua module for text
|
||||
description: UTF-8 aware subset of Lua's `string` module.
|
||||
homepage: https://github.com/hslua/hslua-module-test
|
||||
license: MIT
|
||||
license-file: LICENSE
|
||||
author: Albert Krewinkel
|
||||
maintainer: albert+hslua@zeitkraut.de
|
||||
copyright: © 2017 Albert Krewinkel
|
||||
category: Foreign
|
||||
build-type: Simple
|
||||
extra-source-files: ChangeLog.md
|
||||
test/hstext-test.lua
|
||||
cabal-version: >=1.10
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/hslua/hslua-module-text.git
|
||||
|
||||
library
|
||||
exposed-modules: Foreign.Lua.Module.Text
|
||||
build-depends: base >= 4.7 && < 5
|
||||
, hslua >= 0.9 && < 0.10
|
||||
, text >= 1 && < 1.3
|
||||
hs-source-dirs: src
|
||||
default-language: Haskell2010
|
||||
|
||||
test-suite test-hslua
|
||||
default-language: Haskell2010
|
||||
type: exitcode-stdio-1.0
|
||||
main-is: test-hslua-module-text.hs
|
||||
hs-source-dirs: test
|
||||
ghc-options: -Wall -threaded
|
||||
build-depends: base
|
||||
, hslua
|
||||
, hslua-module-text
|
||||
, tasty
|
||||
, tasty-hunit
|
||||
, text
|
||||
|
Loading…
Reference in New Issue
Block a user