commit c6c2936113b9f3e8bba1c0216e2ae3e0d299a697bfd0250d266c24ca4b67a79d Author: Peter Simons Date: Tue Jun 16 10:56:49 2020 +0000 osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-filepath-bytestring revision:2, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-filepath-bytestring?expand=0&rev=1 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/filepath-bytestring-1.4.2.1.6.tar.gz b/filepath-bytestring-1.4.2.1.6.tar.gz new file mode 100644 index 0000000..3ef1871 --- /dev/null +++ b/filepath-bytestring-1.4.2.1.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71147fed4505946dcf1fc77bb3815d25a7471880ffcf5553329963adbcfb987 +size 25418 diff --git a/ghc-filepath-bytestring.changes b/ghc-filepath-bytestring.changes new file mode 100644 index 0000000..ee50dfc --- /dev/null +++ b/ghc-filepath-bytestring.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Tue Jun 9 09:26:13 UTC 2020 - psimons@suse.com + +- Add filepath-bytestring at version 1.4.2.1.6. + diff --git a/ghc-filepath-bytestring.spec b/ghc-filepath-bytestring.spec new file mode 100644 index 0000000..bac8b3f --- /dev/null +++ b/ghc-filepath-bytestring.spec @@ -0,0 +1,89 @@ +# +# spec file for package ghc-filepath-bytestring +# +# Copyright (c) 2020 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 filepath-bytestring +%bcond_with tests +Name: ghc-%{pkg_name} +Version: 1.4.2.1.6 +Release: 0 +Summary: Library for manipulating RawFilePaths in a cross platform way +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-rpm-macros +BuildRequires: ghc-unix-devel +%if %{with tests} +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-filepath-devel +%endif + +%description +This package provides functionality for manipulating 'RawFilePath' values. +It can be used as a drop in replacement for the filepath library to get the +benefits of using ByteStrings. It provides three modules: + +* "System.FilePath.Posix.ByteString" manipulates POSIX/Linux style +'RawFilePath' values (with '/' as the path separator). + +* "System.FilePath.Windows.ByteString" manipulates Windows style 'RawFilePath' +values (with either '\' or '/' as the path separator, and deals with drives). + +* "System.FilePath.ByteString" is an alias for the module appropriate to your +platform. + +All three modules provide the same API, and the same documentation (calling out +differences in the different variants). + +%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 + +%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 README.md TODO + +%changelog