diff --git a/ghc-text-ansi.changes b/ghc-text-ansi.changes index b85af71..b8e0c07 100644 --- a/ghc-text-ansi.changes +++ b/ghc-text-ansi.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Thu Oct 12 16:00:38 UTC 2023 - Peter Simons + +- Update text-ansi to version 0.3.0.1. + 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/text-ansi-0.3.0.1/src/CHANGELOG.md + ------------------------------------------------------------------- Wed Oct 11 01:14:52 UTC 2023 - Peter Simons diff --git a/ghc-text-ansi.spec b/ghc-text-ansi.spec index d6030a6..ee42c0e 100644 --- a/ghc-text-ansi.spec +++ b/ghc-text-ansi.spec @@ -19,13 +19,12 @@ %global pkg_name text-ansi %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 0.3.0 +Version: 0.3.0.1 Release: 0 Summary: Text styling for ANSI terminals 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 @@ -38,7 +37,7 @@ ExcludeArch: %{ix86} %description Text styling for ANSI terminals using SGR codes, as defined by the - standard. Supports foreground/background color, bold/faint intensity, italic, @@ -76,7 +75,6 @@ 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 diff --git a/text-ansi-0.3.0.1.tar.gz b/text-ansi-0.3.0.1.tar.gz new file mode 100644 index 0000000..3380098 --- /dev/null +++ b/text-ansi-0.3.0.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0078b6e1adfb3fbbb4e241e20116829c3ede02f3906eb292ab4540c9e82f3846 +size 6149 diff --git a/text-ansi-0.3.0.tar.gz b/text-ansi-0.3.0.tar.gz deleted file mode 100644 index e200d63..0000000 --- a/text-ansi-0.3.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:35b383ae4b803971026e183dc670c5bc484271f39871a1a3e0b15e28731a4550 -size 6079 diff --git a/text-ansi.cabal b/text-ansi.cabal deleted file mode 100644 index 9d9b868..0000000 --- a/text-ansi.cabal +++ /dev/null @@ -1,60 +0,0 @@ -cabal-version: 2.2 - -name: text-ansi -version: 0.3.0 -x-revision: 1 -category: Data -synopsis: Text styling for ANSI terminals. -description: - Text styling for ANSI terminals using SGR codes, as defined by the - - standard. - . - Supports foreground\/background color, bold\/faint intensity, italic, - single\/double underline, strikethrough, frame, encircle, and overline escape - sequences. Some styles may not work on your terminal. - . - Also features terminal detection, so redirecting styled output to a file will - automatically strip the ANSI escape sequences. -author: Mitchell Rosen, Travis Staton -maintainer: Mitchell Rosen , Travis Staton -homepage: https://github.com/awkward-squad/text-ansi -bug-reports: https://github.com/awkward-squad/text-ansi/issues -copyright: (c) 2018-2023 Mitchell Rosen, Travis Staton -license: BSD-3-Clause -license-file: LICENSE -build-type: Simple -tested-with: GHC == 9.4.7, GHC == 9.6.3, GHC == 9.8.1 - -extra-source-files: - CHANGELOG.md - README.md - -source-repository head - type: git - location: git://github.com/awkward-squad/text-ansi.git - -library - build-depends: - base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19, - text >= 1.0 && < 2.2, - text-builder-linear ^>= 0.1.1, - default-language: - Haskell2010 - exposed-modules: - String.ANSI - Text.ANSI - Text.Builder.ANSI - Text.Lazy.Builder.ANSI - ghc-options: - -Weverything - -Wno-implicit-prelude - -Wno-missing-import-lists - -Wno-missing-local-signatures - -Wno-unsafe - if impl(ghc >= 8.10) - ghc-options: - -Wno-missing-safe-haskell-mode - -Wno-prepositive-qualified-module - hs-source-dirs: - src