diff --git a/ghc-hslua-module-text.changes b/ghc-hslua-module-text.changes index 5e86c76..e489d31 100644 --- a/ghc-hslua-module-text.changes +++ b/ghc-hslua-module-text.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Sat Feb 19 14:38:23 UTC 2022 - Peter Simons + +- Update hslua-module-text to version 1.0.2. + Upstream has edited the change log file since the last release in + a non-trivial way, i.e. they did more than just add a new entry + at the top. You can review the file at: + http://hackage.haskell.org/package/hslua-module-text-1.0.2/src/CHANGELOG.md + ------------------------------------------------------------------- Sun Jan 30 08:00:08 UTC 2022 - Peter Simons diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 48a91c9..e1fb72c 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -19,13 +19,12 @@ %global pkg_name hslua-module-text %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.0.1 +Version: 1.0.2 Release: 0 Summary: Lua module for text License: MIT 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-hslua-core-devel BuildRequires: ghc-hslua-marshalling-devel @@ -58,7 +57,6 @@ files. %prep %autosetup -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build diff --git a/hslua-module-text-1.0.1.tar.gz b/hslua-module-text-1.0.1.tar.gz deleted file mode 100644 index 87192c6..0000000 --- a/hslua-module-text-1.0.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:691c9680deeb177c0218a243fed689af535b4b3f270ab69c4f299dd377e1ce5c -size 4615 diff --git a/hslua-module-text-1.0.2.tar.gz b/hslua-module-text-1.0.2.tar.gz new file mode 100644 index 0000000..864b2bb --- /dev/null +++ b/hslua-module-text-1.0.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d81d6525fc1e5d252703f91eb3f015f24adeec057553a4c7696768285fb30577 +size 4650 diff --git a/hslua-module-text.cabal b/hslua-module-text.cabal deleted file mode 100644 index 183d650..0000000 --- a/hslua-module-text.cabal +++ /dev/null @@ -1,71 +0,0 @@ -cabal-version: 2.2 -name: hslua-module-text -version: 1.0.1 -x-revision: 1 -synopsis: Lua module for text -description: UTF-8 aware subset of Lua's `string` module. - . - This package is part of HsLua, a Haskell framework - built around the embeddable scripting language - . -homepage: https://github.com/hslua/hslua -bug-reports: https://github.com/hslua/hslua/issues -license: MIT -license-file: LICENSE -author: Albert Krewinkel -maintainer: albert+hslua@zeitkraut.de -copyright: © 2017–2022 Albert Krewinkel -category: Foreign -extra-source-files: CHANGELOG.md - , test/test-text.lua -tested-with: GHC == 8.0.2 - , GHC == 8.2.2 - , GHC == 8.4.4 - , GHC == 8.6.5 - , GHC == 8.8.3 - , GHC == 8.10.7 - , GHC == 9.0.1 - , GHC == 9.2.1 - -source-repository head - type: git - location: https://github.com/hslua/hslua.git - subdir: hslua-module-text - -common common-options - default-language: Haskell2010 - build-depends: base >= 4.8 && < 5 - , hslua-core >= 2.1 && < 2.2 - , hslua-packaging >= 2.1 && < 2.2 - , text >= 1.2 && < 2.1 - ghc-options: -Wall - -Wincomplete-record-updates - -Wnoncanonical-monad-instances - -Wredundant-constraints - if impl(ghc >= 8.2) - ghc-options: -Wcpp-undef - -Werror=missing-home-modules - if impl(ghc >= 8.4) - ghc-options: -Widentities - -Wincomplete-uni-patterns - -Wpartial-fields - -fhide-source-paths - -library - import: common-options - exposed-modules: HsLua.Module.Text - hs-source-dirs: src - build-depends: hslua-marshalling >= 2.1 && < 2.2 - other-extensions: OverloadedStrings - -test-suite test-hslua-module-text - import: common-options - type: exitcode-stdio-1.0 - main-is: test-hslua-module-text.hs - hs-source-dirs: test - ghc-options: -Wall -threaded - build-depends: hslua-module-text - , tasty >= 0.11 - , tasty-hunit >= 0.9 - , tasty-lua >= 1.0 && < 1.1 - , text