From df1f41ba85d963fb4216c07058814132acd2af68595c46fa5f6bb4b986dd891d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 3 Oct 2016 08:20:39 +0000 Subject: [PATCH 1/8] Accepting request 432731 from devel:languages:haskell:lts:7 version / revision update OBS-URL: https://build.opensuse.org/request/show/432731 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-ed25519?expand=0&rev=5 --- 2.cabal => ed25519.cabal | 300 +++++++++++++++++++-------------------- ghc-ed25519.spec | 15 +- 2 files changed, 153 insertions(+), 162 deletions(-) rename 2.cabal => ed25519.cabal (96%) diff --git a/2.cabal b/ed25519.cabal similarity index 96% rename from 2.cabal rename to ed25519.cabal index 6717b8d..a4b26c1 100644 --- a/2.cabal +++ b/ed25519.cabal @@ -1,150 +1,150 @@ -name: ed25519 -version: 0.0.5.0 -x-revision: 2 -category: Cryptography -license: MIT -synopsis: Ed25519 cryptographic signatures -homepage: http://thoughtpolice.github.com/hs-ed25519 -bug-reports: http://github.com/thoughtpolice/hs-ed25519/issues -license-file: LICENSE.txt -copyright: Copyright (c) Austin Seipp 2013-2015 -author: Austin Seipp -maintainer: Austin Seipp -build-type: Simple -cabal-version: >=1.10 -tested-with: GHC == 7.0.1, GHC == 7.0.2, GHC == 7.0.3, GHC == 7.0.4, - GHC == 7.2.1, GHC == 7.2.2, GHC == 7.4.1, GHC == 7.4.2, - GHC == 7.6.1, GHC == 7.6.2, GHC == 7.6.3, - GHC == 7.8.2, GHC == 7.8.3, GHC == 7.8.4, - GHC == 7.10.1, GHC == 7.10.2 - -description: - This package provides a simple, fast, self-contained copy of the - Ed25519 public-key signature system with a clean interface. It also - includes support for detached signatures, and thorough documentation - on the design and implementation, including usage guidelines. - -extra-source-files: - .travis.yml - AUTHORS.txt - README.md - CONTRIBUTING.md - CHANGELOG.md - src/cbits/ref10/*.c - src/cbits/ref10/include/*.h - -source-repository head - type: git - location: https://github.com/thoughtpolice/hs-ed25519.git - -------------------------------------------------------------------------------- --- Flags - -flag test-properties - default: True - manual: True - -flag test-hlint - default: True - manual: True - -flag test-doctests - default: True - manual: True - -flag no-donna - default: True - manual: True - -------------------------------------------------------------------------------- --- Build pt 1: main project - -library - build-depends: - ghc-prim >= 0.1 && < 0.6, - base >= 4 && < 5, - bytestring >= 0.9 && < 0.11 - - exposed-modules: - Crypto.Sign.Ed25519 - - ghc-options: -Wall -fwarn-tabs - default-language: Haskell2010 - hs-source-dirs: src - - -- Choose the underlying C implementation - if flag(no-donna) - -- ref10 implementation from SUPERCOP, about 2x slower than the AMD64 - -- SUPERCOP implementations, 15x faster than ronald3072 for signing. - c-sources: src/cbits/ref10/ed25519.c - include-dirs: src/cbits/ref10 src/cbits/ref10/include - else - -- TODO(aseipp): ed25519-donna import - buildable: False - -------------------------------------------------------------------------------- --- Build pt 2: Tests - -test-suite properties - type: exitcode-stdio-1.0 - main-is: properties.hs - ghc-options: -w - hs-source-dirs: tests - default-language: Haskell2010 - - if !flag(test-properties) - buildable: False - else - build-depends: - base >= 4 && < 5, - bytestring >= 0.9 && < 0.11, - QuickCheck >= 2.4 && < 2.9, - ed25519 - --- --- Style/doc tests below --- - -test-suite hlint - type: exitcode-stdio-1.0 - main-is: hlint.hs - hs-source-dirs: tests - default-language: Haskell2010 - - if !flag(test-hlint) - buildable: False - else - build-depends: - base >= 4 && < 5, - hlint >= 1.7 && < 1.10 - -test-suite doctests - type: exitcode-stdio-1.0 - main-is: doctests.hs - hs-source-dirs: tests - default-language: Haskell2010 - - if !flag(test-doctests) - buildable: False - else - build-depends: - base >= 4 && < 5, - filepath >= 1.0 && < 1.5, - directory >= 1.0 && < 1.3, - doctest >= 0.10 && < 0.12 - -------------------------------------------------------------------------------- --- Build pt 3: benchmarks - -benchmark bench - type: exitcode-stdio-1.0 - build-depends: - base >= 4 && < 5, - bytestring >= 0.9 && < 0.11, - criterion >= 0.8 && < 1.2, - deepseq >= 1.3 && < 1.5, - ed25519 - - default-language: Haskell2010 - hs-source-dirs: benchmarks - main-is: bench.hs +name: ed25519 +version: 0.0.5.0 +x-revision: 2 +category: Cryptography +license: MIT +synopsis: Ed25519 cryptographic signatures +homepage: http://thoughtpolice.github.com/hs-ed25519 +bug-reports: http://github.com/thoughtpolice/hs-ed25519/issues +license-file: LICENSE.txt +copyright: Copyright (c) Austin Seipp 2013-2015 +author: Austin Seipp +maintainer: Austin Seipp +build-type: Simple +cabal-version: >=1.10 +tested-with: GHC == 7.0.1, GHC == 7.0.2, GHC == 7.0.3, GHC == 7.0.4, + GHC == 7.2.1, GHC == 7.2.2, GHC == 7.4.1, GHC == 7.4.2, + GHC == 7.6.1, GHC == 7.6.2, GHC == 7.6.3, + GHC == 7.8.2, GHC == 7.8.3, GHC == 7.8.4, + GHC == 7.10.1, GHC == 7.10.2 + +description: + This package provides a simple, fast, self-contained copy of the + Ed25519 public-key signature system with a clean interface. It also + includes support for detached signatures, and thorough documentation + on the design and implementation, including usage guidelines. + +extra-source-files: + .travis.yml + AUTHORS.txt + README.md + CONTRIBUTING.md + CHANGELOG.md + src/cbits/ref10/*.c + src/cbits/ref10/include/*.h + +source-repository head + type: git + location: https://github.com/thoughtpolice/hs-ed25519.git + +------------------------------------------------------------------------------- +-- Flags + +flag test-properties + default: True + manual: True + +flag test-hlint + default: True + manual: True + +flag test-doctests + default: True + manual: True + +flag no-donna + default: True + manual: True + +------------------------------------------------------------------------------- +-- Build pt 1: main project + +library + build-depends: + ghc-prim >= 0.1 && < 0.6, + base >= 4 && < 5, + bytestring >= 0.9 && < 0.11 + + exposed-modules: + Crypto.Sign.Ed25519 + + ghc-options: -Wall -fwarn-tabs + default-language: Haskell2010 + hs-source-dirs: src + + -- Choose the underlying C implementation + if flag(no-donna) + -- ref10 implementation from SUPERCOP, about 2x slower than the AMD64 + -- SUPERCOP implementations, 15x faster than ronald3072 for signing. + c-sources: src/cbits/ref10/ed25519.c + include-dirs: src/cbits/ref10 src/cbits/ref10/include + else + -- TODO(aseipp): ed25519-donna import + buildable: False + +------------------------------------------------------------------------------- +-- Build pt 2: Tests + +test-suite properties + type: exitcode-stdio-1.0 + main-is: properties.hs + ghc-options: -w + hs-source-dirs: tests + default-language: Haskell2010 + + if !flag(test-properties) + buildable: False + else + build-depends: + base >= 4 && < 5, + bytestring >= 0.9 && < 0.11, + QuickCheck >= 2.4 && < 2.9, + ed25519 + +-- +-- Style/doc tests below +-- + +test-suite hlint + type: exitcode-stdio-1.0 + main-is: hlint.hs + hs-source-dirs: tests + default-language: Haskell2010 + + if !flag(test-hlint) + buildable: False + else + build-depends: + base >= 4 && < 5, + hlint >= 1.7 && < 1.10 + +test-suite doctests + type: exitcode-stdio-1.0 + main-is: doctests.hs + hs-source-dirs: tests + default-language: Haskell2010 + + if !flag(test-doctests) + buildable: False + else + build-depends: + base >= 4 && < 5, + filepath >= 1.0 && < 1.5, + directory >= 1.0 && < 1.3, + doctest >= 0.10 && < 0.12 + +------------------------------------------------------------------------------- +-- Build pt 3: benchmarks + +benchmark bench + type: exitcode-stdio-1.0 + build-depends: + base >= 4 && < 5, + bytestring >= 0.9 && < 0.11, + criterion >= 0.8 && < 1.2, + deepseq >= 1.3 && < 1.5, + ed25519 + + default-language: Haskell2010 + hs-source-dirs: benchmarks + main-is: bench.hs diff --git a/ghc-ed25519.spec b/ghc-ed25519.spec index bf84cab..25d3729 100644 --- a/ghc-ed25519.spec +++ b/ghc-ed25519.spec @@ -23,12 +23,11 @@ Version: 0.0.5.0 Release: 0 Summary: Ed25519 cryptographic signatures License: MIT -Group: System/Libraries +Group: Development/Languages/Other 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/2.cabal +Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel -# Begin cabal-rpm deps: BuildRequires: ghc-bytestring-devel BuildRequires: ghc-rpm-macros BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -39,7 +38,6 @@ BuildRequires: ghc-doctest-devel BuildRequires: ghc-filepath-devel BuildRequires: ghc-hlint-devel %endif -# End cabal-rpm deps %description This package provides a simple, fast, self-contained copy of the Ed25519 @@ -62,20 +60,14 @@ This package provides the Haskell %{pkg_name} library development files. %setup -q -n %{pkg_name}-%{version} cp -p %{SOURCE1} %{pkg_name}.cabal - %build %ghc_lib_build - %install %ghc_lib_install - %check -%if %{with tests} -%{cabal} test -%endif - +%cabal_test %post devel %ghc_pkg_recache @@ -89,6 +81,5 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %files devel -f %{name}-devel.files %defattr(-,root,root,-) -%doc AUTHORS.txt CHANGELOG.md README.md %changelog From 212023a99c78bb9dc8bf091191bccc14fd55489afaea295fd6951d4a310b4f8f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 5 Oct 2016 18:46:50 +0000 Subject: [PATCH 2/8] Use pristine copy of edited Cabal file from upstream. OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-ed25519?expand=0&rev=6 --- ed25519.cabal | 300 +++++++++++++++++++++++++------------------------- 1 file changed, 150 insertions(+), 150 deletions(-) diff --git a/ed25519.cabal b/ed25519.cabal index a4b26c1..6717b8d 100644 --- a/ed25519.cabal +++ b/ed25519.cabal @@ -1,150 +1,150 @@ -name: ed25519 -version: 0.0.5.0 -x-revision: 2 -category: Cryptography -license: MIT -synopsis: Ed25519 cryptographic signatures -homepage: http://thoughtpolice.github.com/hs-ed25519 -bug-reports: http://github.com/thoughtpolice/hs-ed25519/issues -license-file: LICENSE.txt -copyright: Copyright (c) Austin Seipp 2013-2015 -author: Austin Seipp -maintainer: Austin Seipp -build-type: Simple -cabal-version: >=1.10 -tested-with: GHC == 7.0.1, GHC == 7.0.2, GHC == 7.0.3, GHC == 7.0.4, - GHC == 7.2.1, GHC == 7.2.2, GHC == 7.4.1, GHC == 7.4.2, - GHC == 7.6.1, GHC == 7.6.2, GHC == 7.6.3, - GHC == 7.8.2, GHC == 7.8.3, GHC == 7.8.4, - GHC == 7.10.1, GHC == 7.10.2 - -description: - This package provides a simple, fast, self-contained copy of the - Ed25519 public-key signature system with a clean interface. It also - includes support for detached signatures, and thorough documentation - on the design and implementation, including usage guidelines. - -extra-source-files: - .travis.yml - AUTHORS.txt - README.md - CONTRIBUTING.md - CHANGELOG.md - src/cbits/ref10/*.c - src/cbits/ref10/include/*.h - -source-repository head - type: git - location: https://github.com/thoughtpolice/hs-ed25519.git - -------------------------------------------------------------------------------- --- Flags - -flag test-properties - default: True - manual: True - -flag test-hlint - default: True - manual: True - -flag test-doctests - default: True - manual: True - -flag no-donna - default: True - manual: True - -------------------------------------------------------------------------------- --- Build pt 1: main project - -library - build-depends: - ghc-prim >= 0.1 && < 0.6, - base >= 4 && < 5, - bytestring >= 0.9 && < 0.11 - - exposed-modules: - Crypto.Sign.Ed25519 - - ghc-options: -Wall -fwarn-tabs - default-language: Haskell2010 - hs-source-dirs: src - - -- Choose the underlying C implementation - if flag(no-donna) - -- ref10 implementation from SUPERCOP, about 2x slower than the AMD64 - -- SUPERCOP implementations, 15x faster than ronald3072 for signing. - c-sources: src/cbits/ref10/ed25519.c - include-dirs: src/cbits/ref10 src/cbits/ref10/include - else - -- TODO(aseipp): ed25519-donna import - buildable: False - -------------------------------------------------------------------------------- --- Build pt 2: Tests - -test-suite properties - type: exitcode-stdio-1.0 - main-is: properties.hs - ghc-options: -w - hs-source-dirs: tests - default-language: Haskell2010 - - if !flag(test-properties) - buildable: False - else - build-depends: - base >= 4 && < 5, - bytestring >= 0.9 && < 0.11, - QuickCheck >= 2.4 && < 2.9, - ed25519 - --- --- Style/doc tests below --- - -test-suite hlint - type: exitcode-stdio-1.0 - main-is: hlint.hs - hs-source-dirs: tests - default-language: Haskell2010 - - if !flag(test-hlint) - buildable: False - else - build-depends: - base >= 4 && < 5, - hlint >= 1.7 && < 1.10 - -test-suite doctests - type: exitcode-stdio-1.0 - main-is: doctests.hs - hs-source-dirs: tests - default-language: Haskell2010 - - if !flag(test-doctests) - buildable: False - else - build-depends: - base >= 4 && < 5, - filepath >= 1.0 && < 1.5, - directory >= 1.0 && < 1.3, - doctest >= 0.10 && < 0.12 - -------------------------------------------------------------------------------- --- Build pt 3: benchmarks - -benchmark bench - type: exitcode-stdio-1.0 - build-depends: - base >= 4 && < 5, - bytestring >= 0.9 && < 0.11, - criterion >= 0.8 && < 1.2, - deepseq >= 1.3 && < 1.5, - ed25519 - - default-language: Haskell2010 - hs-source-dirs: benchmarks - main-is: bench.hs +name: ed25519 +version: 0.0.5.0 +x-revision: 2 +category: Cryptography +license: MIT +synopsis: Ed25519 cryptographic signatures +homepage: http://thoughtpolice.github.com/hs-ed25519 +bug-reports: http://github.com/thoughtpolice/hs-ed25519/issues +license-file: LICENSE.txt +copyright: Copyright (c) Austin Seipp 2013-2015 +author: Austin Seipp +maintainer: Austin Seipp +build-type: Simple +cabal-version: >=1.10 +tested-with: GHC == 7.0.1, GHC == 7.0.2, GHC == 7.0.3, GHC == 7.0.4, + GHC == 7.2.1, GHC == 7.2.2, GHC == 7.4.1, GHC == 7.4.2, + GHC == 7.6.1, GHC == 7.6.2, GHC == 7.6.3, + GHC == 7.8.2, GHC == 7.8.3, GHC == 7.8.4, + GHC == 7.10.1, GHC == 7.10.2 + +description: + This package provides a simple, fast, self-contained copy of the + Ed25519 public-key signature system with a clean interface. It also + includes support for detached signatures, and thorough documentation + on the design and implementation, including usage guidelines. + +extra-source-files: + .travis.yml + AUTHORS.txt + README.md + CONTRIBUTING.md + CHANGELOG.md + src/cbits/ref10/*.c + src/cbits/ref10/include/*.h + +source-repository head + type: git + location: https://github.com/thoughtpolice/hs-ed25519.git + +------------------------------------------------------------------------------- +-- Flags + +flag test-properties + default: True + manual: True + +flag test-hlint + default: True + manual: True + +flag test-doctests + default: True + manual: True + +flag no-donna + default: True + manual: True + +------------------------------------------------------------------------------- +-- Build pt 1: main project + +library + build-depends: + ghc-prim >= 0.1 && < 0.6, + base >= 4 && < 5, + bytestring >= 0.9 && < 0.11 + + exposed-modules: + Crypto.Sign.Ed25519 + + ghc-options: -Wall -fwarn-tabs + default-language: Haskell2010 + hs-source-dirs: src + + -- Choose the underlying C implementation + if flag(no-donna) + -- ref10 implementation from SUPERCOP, about 2x slower than the AMD64 + -- SUPERCOP implementations, 15x faster than ronald3072 for signing. + c-sources: src/cbits/ref10/ed25519.c + include-dirs: src/cbits/ref10 src/cbits/ref10/include + else + -- TODO(aseipp): ed25519-donna import + buildable: False + +------------------------------------------------------------------------------- +-- Build pt 2: Tests + +test-suite properties + type: exitcode-stdio-1.0 + main-is: properties.hs + ghc-options: -w + hs-source-dirs: tests + default-language: Haskell2010 + + if !flag(test-properties) + buildable: False + else + build-depends: + base >= 4 && < 5, + bytestring >= 0.9 && < 0.11, + QuickCheck >= 2.4 && < 2.9, + ed25519 + +-- +-- Style/doc tests below +-- + +test-suite hlint + type: exitcode-stdio-1.0 + main-is: hlint.hs + hs-source-dirs: tests + default-language: Haskell2010 + + if !flag(test-hlint) + buildable: False + else + build-depends: + base >= 4 && < 5, + hlint >= 1.7 && < 1.10 + +test-suite doctests + type: exitcode-stdio-1.0 + main-is: doctests.hs + hs-source-dirs: tests + default-language: Haskell2010 + + if !flag(test-doctests) + buildable: False + else + build-depends: + base >= 4 && < 5, + filepath >= 1.0 && < 1.5, + directory >= 1.0 && < 1.3, + doctest >= 0.10 && < 0.12 + +------------------------------------------------------------------------------- +-- Build pt 3: benchmarks + +benchmark bench + type: exitcode-stdio-1.0 + build-depends: + base >= 4 && < 5, + bytestring >= 0.9 && < 0.11, + criterion >= 0.8 && < 1.2, + deepseq >= 1.3 && < 1.5, + ed25519 + + default-language: Haskell2010 + hs-source-dirs: benchmarks + main-is: bench.hs From e92a9f90912aefe19de478cc89dfbbfc05c2a8a18e62bc042ce7aa3309b8c994 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 22 Feb 2017 17:44:37 +0000 Subject: [PATCH 3/8] synchronize with lts-8 package sett from configuration 0cb270c8d22a0823ab5130d95cc499e186cf864e OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-ed25519?expand=0&rev=7 --- ghc-ed25519.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-ed25519.spec b/ghc-ed25519.spec index 25d3729..9f4c2bc 100644 --- a/ghc-ed25519.spec +++ b/ghc-ed25519.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-ed25519 # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 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 From 4c2537acdfff441aed4be0b3249d74798ba3f94edb62230cb1c2e2dc6c1ead16 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 28 Feb 2017 10:35:43 +0000 Subject: [PATCH 4/8] synchronize with lts-8 project from configuration b1f9faeb9ef431eed42de296b621d35661a39011 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-ed25519?expand=0&rev=8 --- ghc-ed25519.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/ghc-ed25519.spec b/ghc-ed25519.spec index 9f4c2bc..fa3581f 100644 --- a/ghc-ed25519.spec +++ b/ghc-ed25519.spec @@ -81,5 +81,6 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %files devel -f %{name}-devel.files %defattr(-,root,root,-) +%doc AUTHORS.txt CHANGELOG.md README.md %changelog From 30960484945a9a1b49e329680a64a10c07b223357f4d56a76e044c1443439b17 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 5 Aug 2017 02:06:46 +0000 Subject: [PATCH 5/8] osc copypac from project:devel:languages:haskell:lts:9 package:ghc-ed25519 revision:3, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-ed25519?expand=0&rev=9 --- ghc-ed25519.changes | 5 +++++ ghc-ed25519.spec | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ghc-ed25519.changes b/ghc-ed25519.changes index 9357294..5c6788b 100644 --- a/ghc-ed25519.changes +++ b/ghc-ed25519.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com + +- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. + ------------------------------------------------------------------- Sun Jul 10 17:04:45 UTC 2016 - psimons@suse.com diff --git a/ghc-ed25519.spec b/ghc-ed25519.spec index fa3581f..8112571 100644 --- a/ghc-ed25519.spec +++ b/ghc-ed25519.spec @@ -30,7 +30,6 @@ Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revis BuildRequires: ghc-Cabal-devel BuildRequires: ghc-bytestring-devel BuildRequires: ghc-rpm-macros -BuildRoot: %{_tmppath}/%{name}-%{version}-build %if %{with tests} BuildRequires: ghc-QuickCheck-devel BuildRequires: ghc-directory-devel @@ -76,11 +75,9 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %ghc_pkg_recache %files -f %{name}.files -%defattr(-,root,root,-) %doc LICENSE.txt %files devel -f %{name}-devel.files -%defattr(-,root,root,-) %doc AUTHORS.txt CHANGELOG.md README.md %changelog From 2057a4d427f1f1cf1121b6c60d1b3849ff4296b7af3f7e366c11be173759257e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 11 Aug 2017 08:53:53 +0000 Subject: [PATCH 6/8] osc copypac from project:devel:languages:haskell:lts:9 package:ghc-ed25519 revision:4, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-ed25519?expand=0&rev=10 --- ghc-ed25519.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-ed25519.spec b/ghc-ed25519.spec index 8112571..2a7baa7 100644 --- a/ghc-ed25519.spec +++ b/ghc-ed25519.spec @@ -23,7 +23,7 @@ Version: 0.0.5.0 Release: 0 Summary: Ed25519 cryptographic signatures License: MIT -Group: Development/Languages/Other +Group: Development/Languages/Haskell 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/2.cabal#/%{pkg_name}.cabal @@ -46,7 +46,7 @@ implementation, including usage guidelines. %package devel Summary: Haskell %{pkg_name} library development files -Group: Development/Libraries/Other +Group: Development/Libraries/Haskell Requires: %{name} = %{version}-%{release} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} From d9aa8c431ea1f8771f9a2a90c5ca9aa589c4c2e9dcc932b98aab1c13b7ab0d1a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 15 Aug 2017 13:55:59 +0000 Subject: [PATCH 7/8] osc copypac from project:devel:languages:haskell:lts:9 package:ghc-ed25519 revision:5, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-ed25519?expand=0&rev=11 --- ghc-ed25519.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-ed25519.spec b/ghc-ed25519.spec index 2a7baa7..6fb7201 100644 --- a/ghc-ed25519.spec +++ b/ghc-ed25519.spec @@ -24,7 +24,7 @@ Release: 0 Summary: Ed25519 cryptographic signatures License: MIT Group: Development/Languages/Haskell -Url: https://hackage.haskell.org/package/%{pkg_name} +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/2.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel From 6db39e8e40167048cd46b5f3f560bcaa211e7c0dd0d52e03762e372544072625 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Aug 2017 13:32:47 +0000 Subject: [PATCH 8/8] osc copypac from project:devel:languages:haskell:lts:9 package:ghc-ed25519 revision:6, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-ed25519?expand=0&rev=12 --- ghc-ed25519.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-ed25519.spec b/ghc-ed25519.spec index 6fb7201..140117f 100644 --- a/ghc-ed25519.spec +++ b/ghc-ed25519.spec @@ -23,7 +23,7 @@ Version: 0.0.5.0 Release: 0 Summary: Ed25519 cryptographic signatures License: MIT -Group: Development/Languages/Haskell +Group: Development/Libraries/Haskell 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/2.cabal#/%{pkg_name}.cabal