From 494fd26344156dbf11663a75cae433ff2e2e50906ced1794b814c72b4e926ca8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 9 Feb 2022 13:44:53 +0000 Subject: [PATCH 1/2] osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-hjsmin revision:10, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hjsmin?expand=0&rev=9 --- ghc-hjsmin.changes | 6 ++++ ghc-hjsmin.spec | 4 ++- hjsmin.cabal | 70 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 hjsmin.cabal diff --git a/ghc-hjsmin.changes b/ghc-hjsmin.changes index 9d1fab7..d1530a2 100644 --- a/ghc-hjsmin.changes +++ b/ghc-hjsmin.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Feb 4 12:15:35 UTC 2022 - psimons@suse.com + +- Update hjsmin to version 0.2.0.4 revision 1. + Upstream has revised the Cabal build instructions on Hackage. + ------------------------------------------------------------------- Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup diff --git a/ghc-hjsmin.spec b/ghc-hjsmin.spec index 1e92e46..00f1dda 100644 --- a/ghc-hjsmin.spec +++ b/ghc-hjsmin.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-hjsmin # -# Copyright (c) 2020 SUSE LLC +# 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 @@ -25,6 +25,7 @@ Summary: Haskell implementation of a javascript minifier 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-bytestring-devel BuildRequires: ghc-language-javascript-devel @@ -56,6 +57,7 @@ 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 diff --git a/hjsmin.cabal b/hjsmin.cabal new file mode 100644 index 0000000..7e808dc --- /dev/null +++ b/hjsmin.cabal @@ -0,0 +1,70 @@ +name: hjsmin +version: 0.2.0.4 +x-revision: 1 +license: BSD3 +license-file: LICENSE +author: Alan Zimmerman +maintainer: Erik de Castro Lopo +synopsis: Haskell implementation of a javascript minifier +description: + Reduces size of javascript files by stripping out extraneous whitespace and + other syntactic elements, without changing the semantics. +category: Web +stability: unstable +cabal-version: >= 1.10 +build-type: Simple +homepage: http://github.com/erikd/hjsmin +bug-reports: http://github.com/erikd/hjsmin/issues + +Extra-source-files: + Readme.md + test/cli/core/runner + test/cli/empty-input/run + test/cli/minimal-input/run + + +library + default-language: Haskell2010 + ghc-options: -Wall + hs-source-dirs: src + + exposed-modules: Text.Jasmine + + build-depends: base >= 4.8 && < 5 + , bytestring >= 0.10 && < 0.12 + , language-javascript >= 0.6 && < 0.8 + , text == 1.2.* + + +executable hjsmin + default-language: Haskell2010 + ghc-options: -Wall -threaded + hs-source-dirs: src main + main-is: hjsmin.hs + + -- Need this here because the library and the executable have the same name. + other-modules: Text.Jasmine + + build-depends: base >= 4.8 && < 5 + , bytestring == 0.10.* + , language-javascript + , optparse-applicative >= 0.7 + , text + +test-suite test-cli + type: exitcode-stdio-1.0 + ghc-options: -Wall -fwarn-tabs + default-language: Haskell2010 + hs-source-dirs: test + main-is: test-cli.hs + + build-depends: base + , directory + , extra + , filepath + , process + , unix + +source-repository head + type: git + location: https://github.com/erikd/hjsmin.git From 12ffda697fe1603972a460911b5a4742a5be33014e0ffec67d192b093f9798d1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 11 Feb 2022 02:02:05 +0000 Subject: [PATCH 2/2] osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-hjsmin revision:11, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hjsmin?expand=0&rev=10 --- ghc-hjsmin.changes | 2 +- ghc-hjsmin.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-hjsmin.changes b/ghc-hjsmin.changes index d1530a2..6dc4ef4 100644 --- a/ghc-hjsmin.changes +++ b/ghc-hjsmin.changes @@ -1,5 +1,5 @@ ------------------------------------------------------------------- -Fri Feb 4 12:15:35 UTC 2022 - psimons@suse.com +Wed Dec 1 20:12:17 UTC 2021 - Peter Simons - Update hjsmin to version 0.2.0.4 revision 1. Upstream has revised the Cabal build instructions on Hackage. diff --git a/ghc-hjsmin.spec b/ghc-hjsmin.spec index 00f1dda..7f3dba3 100644 --- a/ghc-hjsmin.spec +++ b/ghc-hjsmin.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-hjsmin # -# Copyright (c) 2022 SUSE LLC +# 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