From 75dd99675dae6f747431a07fac137daa089d1903b536fa8fb8d8730c20ca0762 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 May 2020 14:39:55 +0000 Subject: [PATCH] osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-bytestring-builder revision:1, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-bytestring-builder?expand=0&rev=1 --- ghc-bytestring-builder.changes | 5 ++ ghc-bytestring-builder.spec | 88 ++++++++++++++++++++++++++++ .gitattributes | 23 ++++++++ .gitignore | 1 + bytestring-builder-0.10.8.2.0.tar.gz | 3 + 5 files changed, 120 insertions(+) create mode 100644 ghc-bytestring-builder.changes create mode 100644 ghc-bytestring-builder.spec create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 bytestring-builder-0.10.8.2.0.tar.gz diff --git a/ghc-bytestring-builder.changes b/ghc-bytestring-builder.changes new file mode 100644 index 0000000..4776966 --- /dev/null +++ b/ghc-bytestring-builder.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Fri May 29 14:25:51 UTC 2020 - psimons@suse.com + +- Add bytestring-builder at version 0.10.8.2.0. + diff --git a/ghc-bytestring-builder.spec b/ghc-bytestring-builder.spec new file mode 100644 index 0000000..b020a23 --- /dev/null +++ b/ghc-bytestring-builder.spec @@ -0,0 +1,88 @@ +# +# spec file for package ghc-bytestring-builder +# +# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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 bytestring-builder +Name: ghc-%{pkg_name} +Version: 0.10.8.2.0 +Release: 0 +Summary: The new bytestring builder, packaged outside of GHC +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 +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-bytestring-devel +BuildRequires: ghc-deepseq-devel +BuildRequires: ghc-rpm-macros + +%description +This is the bytestring builder that is debuting in bytestring-0.10.4.0, which +should be shipping with GHC 7.8, probably late in 2013. This builder has +several nice simplifications and improvements, and more out-of-box +functionality than the older blaze-builder. + +Note that this package detects which version of bytestring you are compiling +against, and if you are compiling against bytestring-0.10.4 or later, will be +an empty package. + +This package lets the new interface and implementation be used with most older +compilers without upgrading bytestring, which can be rather problematic. +In conjunction with blaze-builder-0.4 or later, which offers an implementation +of blaze-builder in terms of bytestring-builder, this should let most people +try the new interface and implementation without causing undue compatibility +problems with packages that depend on blaze-builder. + +GHC 7.6 did debut an almost identical interface and implementation, but with +slightly different module names and organization. Trying to re-export/rename +the builder provided with 7.6 did not turn out to be very practical, because +this interface includes new functions that rely on Builder internals, which are +not exported in 7.6. Furthermore, these module names should be deprecated in +7.10. + +%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 +%setup -q -n %{pkg_name}-%{version} + +%build +%ghc_lib_build_without_haddock + +%install +%ghc_lib_install + +%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 + +%changelog 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/bytestring-builder-0.10.8.2.0.tar.gz b/bytestring-builder-0.10.8.2.0.tar.gz new file mode 100644 index 0000000..4bdc20d --- /dev/null +++ b/bytestring-builder-0.10.8.2.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27faef6db27c5be5a3715fd68b93725853e0e668849eaf92ce7c33cef9cb2c3f +size 47366