osc copypac from project:devel:languages:haskell:ghc-9.4.x package:ghc-cabal-install-solver revision:1, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-cabal-install-solver?expand=0&rev=1
This commit is contained in:
commit
2a4a968210
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
cabal-install-solver-3.8.1.0.tar.gz
Normal file
3
cabal-install-solver-3.8.1.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:df2369f6c37517a3b2625bc19057d9e206bbb40386bcb607f17dc7d2e588ffe7
|
||||
size 85413
|
148
cabal-install-solver.cabal
Normal file
148
cabal-install-solver.cabal
Normal file
@ -0,0 +1,148 @@
|
||||
cabal-version: 2.2
|
||||
name: cabal-install-solver
|
||||
version: 3.8.1.0
|
||||
x-revision: 1
|
||||
synopsis: The command-line interface for Cabal and Hackage.
|
||||
description:
|
||||
The solver component used in cabal-install command-line program
|
||||
|
||||
homepage: http://www.haskell.org/cabal/
|
||||
bug-reports: https://github.com/haskell/cabal/issues
|
||||
license: BSD-3-Clause
|
||||
license-file: LICENSE
|
||||
author: Cabal Development Team (see AUTHORS file)
|
||||
maintainer: Cabal Development Team <cabal-devel@haskell.org>
|
||||
copyright: 2003-2022, Cabal Development Team
|
||||
category: Distribution
|
||||
build-type: Simple
|
||||
Extra-Source-Files:
|
||||
ChangeLog.md
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/haskell/cabal/
|
||||
subdir: cabal-install-solver
|
||||
|
||||
flag debug-expensive-assertions
|
||||
description: Enable expensive assertions for testing or debugging
|
||||
default: False
|
||||
manual: True
|
||||
|
||||
flag debug-conflict-sets
|
||||
description: Add additional information to ConflictSets
|
||||
default: False
|
||||
manual: True
|
||||
|
||||
flag debug-tracetree
|
||||
description: Compile in support for tracetree (used to debug the solver)
|
||||
default: False
|
||||
manual: True
|
||||
|
||||
library
|
||||
default-language: Haskell2010
|
||||
hs-source-dirs: src
|
||||
hs-source-dirs: src-assertion
|
||||
ghc-options:
|
||||
-Wall -Wcompat -Wnoncanonical-monad-instances
|
||||
-fwarn-tabs -fwarn-incomplete-uni-patterns
|
||||
|
||||
if impl(ghc <8.8)
|
||||
ghc-options: -Wnoncanonical-monadfail-instances
|
||||
if impl(ghc >=8.10)
|
||||
ghc-options: -Wunused-packages
|
||||
|
||||
exposed-modules:
|
||||
Distribution.Client.Utils.Assertion
|
||||
|
||||
Distribution.Solver.Compat.Prelude
|
||||
Distribution.Solver.Modular
|
||||
Distribution.Solver.Modular.Assignment
|
||||
Distribution.Solver.Modular.Builder
|
||||
Distribution.Solver.Modular.Configured
|
||||
Distribution.Solver.Modular.ConfiguredConversion
|
||||
Distribution.Solver.Modular.ConflictSet
|
||||
Distribution.Solver.Modular.Cycles
|
||||
Distribution.Solver.Modular.Dependency
|
||||
Distribution.Solver.Modular.Explore
|
||||
Distribution.Solver.Modular.Flag
|
||||
Distribution.Solver.Modular.Index
|
||||
Distribution.Solver.Modular.IndexConversion
|
||||
Distribution.Solver.Modular.LabeledGraph
|
||||
Distribution.Solver.Modular.Linking
|
||||
Distribution.Solver.Modular.Log
|
||||
Distribution.Solver.Modular.Message
|
||||
Distribution.Solver.Modular.MessageUtils
|
||||
Distribution.Solver.Modular.Package
|
||||
Distribution.Solver.Modular.Preference
|
||||
Distribution.Solver.Modular.PSQ
|
||||
Distribution.Solver.Modular.RetryLog
|
||||
Distribution.Solver.Modular.Solver
|
||||
Distribution.Solver.Modular.Tree
|
||||
Distribution.Solver.Modular.Validate
|
||||
Distribution.Solver.Modular.Var
|
||||
Distribution.Solver.Modular.Version
|
||||
Distribution.Solver.Modular.WeightedPSQ
|
||||
Distribution.Solver.Types.ComponentDeps
|
||||
Distribution.Solver.Types.ConstraintSource
|
||||
Distribution.Solver.Types.DependencyResolver
|
||||
Distribution.Solver.Types.Flag
|
||||
Distribution.Solver.Types.InstalledPreference
|
||||
Distribution.Solver.Types.InstSolverPackage
|
||||
Distribution.Solver.Types.LabeledPackageConstraint
|
||||
Distribution.Solver.Types.OptionalStanza
|
||||
Distribution.Solver.Types.PackageConstraint
|
||||
Distribution.Solver.Types.PackageFixedDeps
|
||||
Distribution.Solver.Types.PackageIndex
|
||||
Distribution.Solver.Types.PackagePath
|
||||
Distribution.Solver.Types.PackagePreferences
|
||||
Distribution.Solver.Types.PkgConfigDb
|
||||
Distribution.Solver.Types.Progress
|
||||
Distribution.Solver.Types.ResolverPackage
|
||||
Distribution.Solver.Types.Settings
|
||||
Distribution.Solver.Types.SolverId
|
||||
Distribution.Solver.Types.SolverPackage
|
||||
Distribution.Solver.Types.SourcePackage
|
||||
Distribution.Solver.Types.Variable
|
||||
|
||||
build-depends:
|
||||
, array >=0.4 && <0.6
|
||||
, base >=4.10 && <4.18
|
||||
, bytestring >=0.10.6.0 && <0.12
|
||||
, Cabal ^>=3.8
|
||||
, Cabal-syntax ^>=3.8
|
||||
, containers >=0.5.6.2 && <0.7
|
||||
, edit-distance ^>= 0.2.2
|
||||
, filepath ^>=1.4.0.0
|
||||
, mtl >=2.0 && <2.3
|
||||
, pretty ^>=1.1
|
||||
, transformers >=0.4.2.0 && <0.6
|
||||
|
||||
if flag(debug-expensive-assertions)
|
||||
cpp-options: -DDEBUG_EXPENSIVE_ASSERTIONS
|
||||
|
||||
if flag(debug-conflict-sets)
|
||||
cpp-options: -DDEBUG_CONFLICT_SETS
|
||||
build-depends: base >=4.8
|
||||
|
||||
if flag(debug-tracetree)
|
||||
cpp-options: -DDEBUG_TRACETREE
|
||||
build-depends: tracetree ^>=0.1
|
||||
|
||||
Test-Suite unit-tests
|
||||
default-language: Haskell2010
|
||||
ghc-options: -rtsopts -threaded
|
||||
|
||||
type: exitcode-stdio-1.0
|
||||
main-is: UnitTests.hs
|
||||
hs-source-dirs: tests
|
||||
other-modules:
|
||||
UnitTests.Distribution.Solver.Modular.MessageUtils
|
||||
|
||||
build-depends:
|
||||
, base >= 4.10 && <4.18
|
||||
, Cabal
|
||||
, Cabal-syntax
|
||||
, cabal-install-solver
|
||||
, tasty >= 1.2.3 && <1.5
|
||||
, tasty-quickcheck
|
||||
, tasty-hunit >= 0.10
|
5
ghc-cabal-install-solver.changes
Normal file
5
ghc-cabal-install-solver.changes
Normal file
@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 20 17:29:04 UTC 2022 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Add cabal-install-solver at version 3.8.1.0 revision 1.
|
||||
|
86
ghc-cabal-install-solver.spec
Normal file
86
ghc-cabal-install-solver.spec
Normal file
@ -0,0 +1,86 @@
|
||||
#
|
||||
# spec file for package ghc-cabal-install-solver
|
||||
#
|
||||
# Copyright (c) 2022 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 cabal-install-solver
|
||||
%bcond_with tests
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 3.8.1.0
|
||||
Release: 0
|
||||
Summary: The command-line interface for Cabal and Hackage
|
||||
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-Cabal-syntax-devel
|
||||
BuildRequires: ghc-array-devel
|
||||
BuildRequires: ghc-bytestring-devel
|
||||
BuildRequires: ghc-containers-devel
|
||||
BuildRequires: ghc-edit-distance-devel
|
||||
BuildRequires: ghc-filepath-devel
|
||||
BuildRequires: ghc-mtl-devel
|
||||
BuildRequires: ghc-pretty-devel
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-transformers-devel
|
||||
ExcludeArch: %{ix86}
|
||||
%if %{with tests}
|
||||
BuildRequires: ghc-tasty-devel
|
||||
BuildRequires: ghc-tasty-hunit-devel
|
||||
BuildRequires: ghc-tasty-quickcheck-devel
|
||||
%endif
|
||||
|
||||
%description
|
||||
The solver component used in cabal-install command-line program.
|
||||
|
||||
%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}
|
||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||
|
||||
%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
|
||||
|
||||
%changelog
|
Loading…
x
Reference in New Issue
Block a user