From 66c9f1ea617b41aec9637acc4eb1d069c32a506d7860c195b1e7c2b779e07f62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20S=C3=BAkup?= Date: Tue, 9 Nov 2021 08:31:56 +0000 Subject: [PATCH] osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-hslua-marshalling revision:2, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hslua-marshalling?expand=0&rev=1 --- .gitattributes | 23 +++++++++ .gitignore | 1 + ghc-hslua-marshalling.changes | 14 ++++++ ghc-hslua-marshalling.spec | 87 ++++++++++++++++++++++++++++++++++ hslua-marshalling-2.0.1.tar.gz | 3 ++ 5 files changed, 128 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 ghc-hslua-marshalling.changes create mode 100644 ghc-hslua-marshalling.spec create mode 100644 hslua-marshalling-2.0.1.tar.gz diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/ghc-hslua-marshalling.changes b/ghc-hslua-marshalling.changes new file mode 100644 index 0000000..1d0ac24 --- /dev/null +++ b/ghc-hslua-marshalling.changes @@ -0,0 +1,14 @@ +------------------------------------------------------------------- +Thu Nov 4 12:12:09 UTC 2021 - psimons@suse.com + +- Update hslua-marshalling to version 2.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/hslua-marshalling-2.0.1/src/CHANGELOG.md + +------------------------------------------------------------------- +Mon Nov 1 08:26:46 UTC 2021 - psimons@suse.com + +- Add hslua-marshalling at version 2.0.0. + diff --git a/ghc-hslua-marshalling.spec b/ghc-hslua-marshalling.spec new file mode 100644 index 0000000..f1bdbe8 --- /dev/null +++ b/ghc-hslua-marshalling.spec @@ -0,0 +1,87 @@ +# +# spec file for package ghc-hslua-marshalling +# +# Copyright (c) 2021 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%global pkg_name hslua-marshalling +%bcond_with tests +Name: ghc-%{pkg_name} +Version: 2.0.1 +Release: 0 +Summary: Marshalling of values between Haskell and 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-bytestring-devel +BuildRequires: ghc-containers-devel +BuildRequires: ghc-hslua-core-devel +BuildRequires: ghc-mtl-devel +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-text-devel +ExcludeArch: %{ix86} +%if %{with tests} +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-lua-arbitrary-devel +BuildRequires: ghc-quickcheck-instances-devel +BuildRequires: ghc-tasty-devel +BuildRequires: ghc-tasty-hslua-devel +BuildRequires: ghc-tasty-hunit-devel +BuildRequires: ghc-tasty-quickcheck-devel +%endif + +%description +Provides functions to marshal values from Haskell to Lua, and /vice versa/. + +This package is part of HsLua, a Haskell framework built around the embeddable +scripting language . + +%package devel +Summary: Haskell %{pkg_name} library development files +Requires: %{name} = %{version}-%{release} +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} + +%description devel +This package provides the Haskell %{pkg_name} library development +files. + +%prep +%autosetup -n %{pkg_name}-%{version} + +%build +%ghc_lib_build + +%install +%ghc_lib_install + +%check +%cabal_test + +%post devel +%ghc_pkg_recache + +%postun devel +%ghc_pkg_recache + +%files -f %{name}.files +%license LICENSE + +%files devel -f %{name}-devel.files +%doc CHANGELOG.md README.md + +%changelog diff --git a/hslua-marshalling-2.0.1.tar.gz b/hslua-marshalling-2.0.1.tar.gz new file mode 100644 index 0000000..14d2d5c --- /dev/null +++ b/hslua-marshalling-2.0.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94e7e995735ede3256e57078cb8f6e11b761a5491b79a1c592960321fc65c4e8 +size 15140