forked from pool/ghc-pandoc-lua-marshal
osc copypac from project:devel:languages:haskell:ghc-9.4.x package:ghc-pandoc-lua-marshal revision:10, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-pandoc-lua-marshal?expand=0&rev=9
This commit is contained in:
parent
8f84363213
commit
f2f081a640
@ -1,3 +1,50 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 15 20:49:41 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-lua-marshal to version 0.2.2.
|
||||
## 0.2.2
|
||||
|
||||
Released 2023-03-15.
|
||||
|
||||
- Add `__tostring` metamethods to *Blocks* and *Inlines*.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 13 12:18:58 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-lua-marshal to version 0.2.1.1.
|
||||
## 0.2.1.1
|
||||
|
||||
Released 2023-03-13.
|
||||
|
||||
- The version constraints for hslua packages have been relaxed;
|
||||
other changes in hslua 2.3.\* do not affect this package.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 11 16:10:47 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-lua-marshal to version 0.2.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/pandoc-lua-marshal-0.2.1/src/CHANGELOG.md
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 18 17:01:10 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-lua-marshal to version 0.2.0.
|
||||
## 0.2.0
|
||||
|
||||
Release pending.
|
||||
|
||||
- Depend on pandoc-types 1.23: the `Null` Block constructor has
|
||||
been removed, and a `Figure` constructor has been added.
|
||||
|
||||
- Support for Lua 5.3 has been dropped; the package now requires
|
||||
hslua 2.2 or later.
|
||||
|
||||
- The implementation for `List` has been moved to the separate
|
||||
`hslua-list` module. This module no longer contains C code.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 16 13:29:37 UTC 2022 - Peter Simons <psimons@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ghc-pandoc-lua-marshal
|
||||
#
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,32 +17,53 @@
|
||||
|
||||
|
||||
%global pkg_name pandoc-lua-marshal
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
%bcond_with tests
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.1.7
|
||||
Version: 0.2.2
|
||||
Release: 0
|
||||
Summary: Use pandoc types in Lua
|
||||
License: MIT
|
||||
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-aeson-devel
|
||||
BuildRequires: ghc-aeson-prof
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-base-prof
|
||||
BuildRequires: ghc-bytestring-devel
|
||||
BuildRequires: ghc-bytestring-prof
|
||||
BuildRequires: ghc-containers-devel
|
||||
BuildRequires: ghc-containers-prof
|
||||
BuildRequires: ghc-exceptions-devel
|
||||
BuildRequires: ghc-exceptions-prof
|
||||
BuildRequires: ghc-hslua-devel
|
||||
BuildRequires: ghc-hslua-list-devel
|
||||
BuildRequires: ghc-hslua-list-prof
|
||||
BuildRequires: ghc-hslua-marshalling-devel
|
||||
BuildRequires: ghc-hslua-marshalling-prof
|
||||
BuildRequires: ghc-hslua-prof
|
||||
BuildRequires: ghc-lua-devel
|
||||
BuildRequires: ghc-lua-prof
|
||||
BuildRequires: ghc-pandoc-types-devel
|
||||
BuildRequires: ghc-pandoc-types-prof
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-safe-devel
|
||||
BuildRequires: ghc-safe-prof
|
||||
BuildRequires: ghc-text-devel
|
||||
BuildRequires: ghc-text-prof
|
||||
ExcludeArch: %{ix86}
|
||||
%if %{with tests}
|
||||
BuildRequires: ghc-QuickCheck-devel
|
||||
BuildRequires: ghc-QuickCheck-prof
|
||||
BuildRequires: ghc-tasty-devel
|
||||
BuildRequires: ghc-tasty-hunit-devel
|
||||
BuildRequires: ghc-tasty-hunit-prof
|
||||
BuildRequires: ghc-tasty-lua-devel
|
||||
BuildRequires: ghc-tasty-lua-prof
|
||||
BuildRequires: ghc-tasty-prof
|
||||
BuildRequires: ghc-tasty-quickcheck-devel
|
||||
BuildRequires: ghc-tasty-quickcheck-prof
|
||||
%endif
|
||||
|
||||
%description
|
||||
@ -67,6 +88,22 @@ Requires(postun): ghc-compiler = %{ghc_version}
|
||||
This package provides the Haskell %{pkg_name} library development
|
||||
files.
|
||||
|
||||
%package -n ghc-%{pkg_name}-doc
|
||||
Summary: Haskell %{pkg_name} library documentation
|
||||
Requires: ghc-filesystem
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n ghc-%{pkg_name}-doc
|
||||
This package provides the Haskell %{pkg_name} library documentation.
|
||||
|
||||
%package -n ghc-%{pkg_name}-prof
|
||||
Summary: Haskell %{pkg_name} profiling library
|
||||
Requires: ghc-%{pkg_name}-devel = %{version}-%{release}
|
||||
Supplements: (ghc-%{pkg_name}-devel and ghc-prof)
|
||||
|
||||
%description -n ghc-%{pkg_name}-prof
|
||||
This package provides the Haskell %{pkg_name} profiling library.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{pkg_name}-%{version}
|
||||
|
||||
@ -91,4 +128,9 @@ files.
|
||||
%files devel -f %{name}-devel.files
|
||||
%doc CHANGELOG.md README.md
|
||||
|
||||
%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files
|
||||
%license LICENSE
|
||||
|
||||
%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files
|
||||
|
||||
%changelog
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b29415580645e78824b134f8508eae3800cab4fd647d736622c0d286dc59c95e
|
||||
size 42225
|
3
pandoc-lua-marshal-0.2.2.tar.gz
Normal file
3
pandoc-lua-marshal-0.2.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:22231c24a7b228b3d0b99dcfb77657b410f8a95f02b6bde365b434a8f1882679
|
||||
size 38236
|
Loading…
x
Reference in New Issue
Block a user