From 008377bdcdc8316028e40bdb1555072f2309fe38 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 30 May 2018 12:46:21 +0000 Subject: [PATCH 01/25] Added the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a01e0c1 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# ghc-hslua-module-text + +The ghc-hslua-module-text package \ No newline at end of file From 57ed498501ffed44b8740165c03ce4a5464d75a6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 30 May 2018 23:34:17 +0900 Subject: [PATCH 02/25] import (#1583271) --- .gitignore | 1 + README.md | 3 -- ghc-hslua-module-text.spec | 83 ++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 85 insertions(+), 3 deletions(-) create mode 100644 .gitignore delete mode 100644 README.md create mode 100644 ghc-hslua-module-text.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6a5ada6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/hslua-module-text-0.1.2.1.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index a01e0c1..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# ghc-hslua-module-text - -The ghc-hslua-module-text package \ No newline at end of file diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec new file mode 100644 index 0000000..829e1c5 --- /dev/null +++ b/ghc-hslua-module-text.spec @@ -0,0 +1,83 @@ +# generated by cabal-rpm-0.12.3 +# https://fedoraproject.org/wiki/Packaging:Haskell + +%global pkg_name hslua-module-text +%global pkgver %{pkg_name}-%{version} + +%bcond_without tests + +Name: ghc-%{pkg_name} +Version: 0.1.2.1 +Release: 1%{?dist} +Summary: Lua module for text + +License: MIT +Url: https://hackage.haskell.org/package/%{pkg_name} +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz + +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +# Begin cabal-rpm deps: +BuildRequires: ghc-hslua-devel +BuildRequires: ghc-text-devel +%if %{with tests} +BuildRequires: ghc-tasty-devel +BuildRequires: ghc-tasty-hunit-devel +%endif +# End cabal-rpm deps + +%description +UTF-8 aware subset of Lua's `string` module. + + +%package devel +Summary: Haskell %{pkg_name} library development files +Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-doc = %{version}-%{release} +%if %{defined ghc_version} +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} +%endif +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development +files. + + +%prep +%setup -q -n %{pkgver} + + +%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 +* Mon May 28 2018 Fedora Haskell SIG - 0.1.2.1-1 +- spec file generated by cabal-rpm-0.12.3 diff --git a/sources b/sources new file mode 100644 index 0000000..dcb0435 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (hslua-module-text-0.1.2.1.tar.gz) = 06f6b5611d452479e99772bbd1eb622f56740a5fc17091cd5c49e13dacb5654deb6d073fe2f40ffb7240ab9267ea3c59d0282ef8f55fce9095525b3d29a73513 From 78a4b20b1b3b0cc567c9ca36e580a72c2ef9f699 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 30 May 2018 23:35:31 +0900 Subject: [PATCH 03/25] bump release over pandoc --- ghc-hslua-module-text.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 829e1c5..5e8102d 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.1.2.1 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Lua module for text License: MIT @@ -79,5 +79,8 @@ files. %changelog +* Wed May 30 2018 Jens Petersen - 0.1.2.1-3 +- bump release over pandoc + * Mon May 28 2018 Fedora Haskell SIG - 0.1.2.1-1 - spec file generated by cabal-rpm-0.12.3 From 726e393616499c43501a1e4fd700e407ce09499e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 1 Jun 2018 16:18:08 +0900 Subject: [PATCH 04/25] disable the testsuite to preserve hash --- ghc-hslua-module-text.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 5e8102d..daef06d 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -4,11 +4,11 @@ %global pkg_name hslua-module-text %global pkgver %{pkg_name}-%{version} -%bcond_without tests +%bcond_with tests Name: ghc-%{pkg_name} Version: 0.1.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lua module for text License: MIT @@ -79,6 +79,9 @@ files. %changelog +* Fri Jun 1 2018 Jens Petersen - 0.1.2.1-4 +- disable the testsuite to preserve hash + * Wed May 30 2018 Jens Petersen - 0.1.2.1-3 - bump release over pandoc From 62793084804bdb264d3797f789d44c0d0e92c6e8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 01:52:28 +0000 Subject: [PATCH 05/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hslua-module-text.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index daef06d..c43315d 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lua module for text License: MIT @@ -79,6 +79,9 @@ files. %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Jun 1 2018 Jens Petersen - 0.1.2.1-4 - disable the testsuite to preserve hash From affc6c0b596ff85e94156077e1f18e1ca9f131ca Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 29 Jul 2018 00:53:28 +0900 Subject: [PATCH 06/25] revise .cabal --- ghc-hslua-module-text.spec | 9 ++++++-- hslua-module-text-0.1.2.1.cabal | 41 +++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 hslua-module-text-0.1.2.1.cabal diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index c43315d..d20cb55 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.3 +# generated by cabal-rpm-0.12.5 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name hslua-module-text @@ -8,12 +8,13 @@ Name: ghc-%{pkg_name} Version: 0.1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Lua module for text License: MIT Url: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros @@ -48,6 +49,7 @@ files. %prep %setup -q -n %{pkgver} +cp -p %{SOURCE1} %{pkg_name}.cabal %build @@ -79,6 +81,9 @@ files. %changelog +* Sat Jul 28 2018 Jens Petersen - 0.1.2.1-6 +- revise .cabal + * Fri Jul 13 2018 Fedora Release Engineering - 0.1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/hslua-module-text-0.1.2.1.cabal b/hslua-module-text-0.1.2.1.cabal new file mode 100644 index 0000000..a4e2ff2 --- /dev/null +++ b/hslua-module-text-0.1.2.1.cabal @@ -0,0 +1,41 @@ +name: hslua-module-text +version: 0.1.2.1 +x-revision: 1 +synopsis: Lua module for text +description: UTF-8 aware subset of Lua's `string` module. +homepage: https://github.com/hslua/hslua-module-test +license: MIT +license-file: LICENSE +author: Albert Krewinkel +maintainer: albert+hslua@zeitkraut.de +copyright: © 2017 Albert Krewinkel +category: Foreign +build-type: Simple +extra-source-files: ChangeLog.md + test/hstext-test.lua +cabal-version: >=1.10 + +source-repository head + type: git + location: https://github.com/hslua/hslua-module-text.git + +library + exposed-modules: Foreign.Lua.Module.Text + build-depends: base >= 4.7 && < 5 + , hslua >= 0.9 && < 0.10 + , text >= 1 && < 1.3 + hs-source-dirs: src + default-language: Haskell2010 + +test-suite test-hslua + default-language: Haskell2010 + type: exitcode-stdio-1.0 + main-is: test-hslua-module-text.hs + hs-source-dirs: test + ghc-options: -Wall -threaded + build-depends: base + , hslua + , hslua-module-text + , tasty + , tasty-hunit + , text From 1029fe028ea56e57ec65c04a6150d293d6fccc07 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 21:38:18 +0000 Subject: [PATCH 07/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hslua-module-text.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index d20cb55..f18a5b7 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.1.2.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Lua module for text License: MIT @@ -81,6 +81,9 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 0.1.2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 28 2018 Jens Petersen - 0.1.2.1-6 - revise .cabal From 5abc3477fe05ffca28b78004abea907133647e87 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:45:09 +0800 Subject: [PATCH 08/25] refresh to cabal-rpm-0.13 --- ghc-hslua-module-text.spec | 21 +++++++-- hslua-module-text-0.1.2.1.cabal | 82 ++++++++++++++++----------------- 2 files changed, 58 insertions(+), 45 deletions(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index f18a5b7..2dc9bca 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.5 +# generated by cabal-rpm-0.13 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name hslua-module-text @@ -8,17 +8,19 @@ Name: ghc-%{pkg_name} Version: 0.1.2.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Lua module for text License: MIT Url: https://hackage.haskell.org/package/%{pkg_name} +# Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal +# End cabal-rpm sources +# Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros -# Begin cabal-rpm deps: BuildRequires: ghc-hslua-devel BuildRequires: ghc-text-devel %if %{with tests} @@ -48,16 +50,22 @@ files. %prep +# Begin cabal-rpm setup: %setup -q -n %{pkgver} -cp -p %{SOURCE1} %{pkg_name}.cabal +cp -bp %{SOURCE1} %{pkg_name}.cabal +# End cabal-rpm setup %build +# Begin cabal-rpm build: %ghc_lib_build +# End cabal-rpm build %install +# Begin cabal-rpm install %ghc_lib_install +# End cabal-rpm install %check @@ -73,7 +81,9 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %files -f %{name}.files +# Begin cabal-rpm files: %license LICENSE +# End cabal-rpm files %files devel -f %{name}-devel.files @@ -81,6 +91,9 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %changelog +* Sun Feb 17 2019 Jens Petersen - 0.1.2.1-8 +- refresh to cabal-rpm-0.13 + * Thu Jan 31 2019 Fedora Release Engineering - 0.1.2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild diff --git a/hslua-module-text-0.1.2.1.cabal b/hslua-module-text-0.1.2.1.cabal index a4e2ff2..332ba62 100644 --- a/hslua-module-text-0.1.2.1.cabal +++ b/hslua-module-text-0.1.2.1.cabal @@ -1,41 +1,41 @@ -name: hslua-module-text -version: 0.1.2.1 -x-revision: 1 -synopsis: Lua module for text -description: UTF-8 aware subset of Lua's `string` module. -homepage: https://github.com/hslua/hslua-module-test -license: MIT -license-file: LICENSE -author: Albert Krewinkel -maintainer: albert+hslua@zeitkraut.de -copyright: © 2017 Albert Krewinkel -category: Foreign -build-type: Simple -extra-source-files: ChangeLog.md - test/hstext-test.lua -cabal-version: >=1.10 - -source-repository head - type: git - location: https://github.com/hslua/hslua-module-text.git - -library - exposed-modules: Foreign.Lua.Module.Text - build-depends: base >= 4.7 && < 5 - , hslua >= 0.9 && < 0.10 - , text >= 1 && < 1.3 - hs-source-dirs: src - default-language: Haskell2010 - -test-suite test-hslua - default-language: Haskell2010 - type: exitcode-stdio-1.0 - main-is: test-hslua-module-text.hs - hs-source-dirs: test - ghc-options: -Wall -threaded - build-depends: base - , hslua - , hslua-module-text - , tasty - , tasty-hunit - , text +name: hslua-module-text +version: 0.1.2.1 +x-revision: 1 +synopsis: Lua module for text +description: UTF-8 aware subset of Lua's `string` module. +homepage: https://github.com/hslua/hslua-module-test +license: MIT +license-file: LICENSE +author: Albert Krewinkel +maintainer: albert+hslua@zeitkraut.de +copyright: © 2017 Albert Krewinkel +category: Foreign +build-type: Simple +extra-source-files: ChangeLog.md + test/hstext-test.lua +cabal-version: >=1.10 + +source-repository head + type: git + location: https://github.com/hslua/hslua-module-text.git + +library + exposed-modules: Foreign.Lua.Module.Text + build-depends: base >= 4.7 && < 5 + , hslua >= 0.9 && < 0.10 + , text >= 1 && < 1.3 + hs-source-dirs: src + default-language: Haskell2010 + +test-suite test-hslua + default-language: Haskell2010 + type: exitcode-stdio-1.0 + main-is: test-hslua-module-text.hs + hs-source-dirs: test + ghc-options: -Wall -threaded + build-depends: base + , hslua + , hslua-module-text + , tasty + , tasty-hunit + , text From 4d7aee51373d2d5b938bc69762defcdf979598a4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 02:35:35 +0000 Subject: [PATCH 09/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hslua-module-text.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 2dc9bca..65b9899 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.1.2.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Lua module for text License: MIT @@ -91,6 +91,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.1.2.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 17 2019 Jens Petersen - 0.1.2.1-8 - refresh to cabal-rpm-0.13 From e4bd28a978612e39afc2cd15256dbe58d9bcf617 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:23:54 +0000 Subject: [PATCH 10/25] refresh to cabal-rpm-1.0.0: lib doc/prof subpkgs and bin static BRs --- ghc-hslua-module-text.spec | 48 ++++++++++++++++++++++++++++---------- 1 file changed, 36 insertions(+), 12 deletions(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 65b9899..fd62666 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.13 +# generated by cabal-rpm-1.0.0 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name hslua-module-text @@ -20,6 +20,12 @@ Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal# # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel +%if %{with haddock} +BuildRequires: ghc-doc +%endif +%if %{with ghc_prof} +BuildRequires: ghc-prof +%endif BuildRequires: ghc-rpm-macros BuildRequires: ghc-hslua-devel BuildRequires: ghc-text-devel @@ -36,11 +42,8 @@ UTF-8 aware subset of Lua's `string` module. %package devel Summary: Haskell %{pkg_name} library development files Provides: %{name}-static = %{version}-%{release} -Provides: %{name}-doc = %{version}-%{release} %if %{defined ghc_version} Requires: ghc-compiler = %{ghc_version} -Requires(post): ghc-compiler = %{ghc_version} -Requires(postun): ghc-compiler = %{ghc_version} %endif Requires: %{name}%{?_isa} = %{version}-%{release} @@ -49,6 +52,25 @@ This package provides the Haskell %{pkg_name} library development files. +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation + +%description doc +This package provides the Haskell %{pkg_name} library documentation. +%endif + + +%if %{with ghc_prof} +%package prof +Summary: Haskell %{pkg_name} profiling library +Requires: %{name}-devel%{?_isa} = %{version}-%{release} + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} @@ -72,14 +94,6 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %cabal_test -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -90,6 +104,16 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %doc ChangeLog.md +%if %{with haddock} +%files doc -f %{name}-doc.files +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + %changelog * Thu Jul 25 2019 Fedora Release Engineering - 0.1.2.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 5c0d1520aef7f5631f30f9a83fb7800464e37fe3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 15:56:58 +0000 Subject: [PATCH 11/25] update to 0.2.1 --- .gitignore | 1 + ghc-hslua-module-text.spec | 10 ++++---- hslua-module-text-0.1.2.1.cabal | 41 --------------------------------- sources | 2 +- 4 files changed, 8 insertions(+), 46 deletions(-) delete mode 100644 hslua-module-text-0.1.2.1.cabal diff --git a/.gitignore b/.gitignore index 6a5ada6..0e27d24 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /hslua-module-text-0.1.2.1.tar.gz +/hslua-module-text-0.2.1.tar.gz diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index fd62666..02f6c1c 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -7,15 +7,14 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.2.1 -Release: 9%{?dist} +Version: 0.2.1 +Release: 1%{?dist} Summary: Lua module for text License: MIT Url: https://hackage.haskell.org/package/%{pkg_name} # Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz -Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal # End cabal-rpm sources # Begin cabal-rpm deps: @@ -27,6 +26,7 @@ BuildRequires: ghc-doc BuildRequires: ghc-prof %endif BuildRequires: ghc-rpm-macros +BuildRequires: ghc-bytestring-devel BuildRequires: ghc-hslua-devel BuildRequires: ghc-text-devel %if %{with tests} @@ -74,7 +74,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup @@ -115,6 +114,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Jul 25 2019 Jens Petersen - 0.2.1-1 +- update to 0.2.1 + * Thu Jul 25 2019 Fedora Release Engineering - 0.1.2.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/hslua-module-text-0.1.2.1.cabal b/hslua-module-text-0.1.2.1.cabal deleted file mode 100644 index 332ba62..0000000 --- a/hslua-module-text-0.1.2.1.cabal +++ /dev/null @@ -1,41 +0,0 @@ -name: hslua-module-text -version: 0.1.2.1 -x-revision: 1 -synopsis: Lua module for text -description: UTF-8 aware subset of Lua's `string` module. -homepage: https://github.com/hslua/hslua-module-test -license: MIT -license-file: LICENSE -author: Albert Krewinkel -maintainer: albert+hslua@zeitkraut.de -copyright: © 2017 Albert Krewinkel -category: Foreign -build-type: Simple -extra-source-files: ChangeLog.md - test/hstext-test.lua -cabal-version: >=1.10 - -source-repository head - type: git - location: https://github.com/hslua/hslua-module-text.git - -library - exposed-modules: Foreign.Lua.Module.Text - build-depends: base >= 4.7 && < 5 - , hslua >= 0.9 && < 0.10 - , text >= 1 && < 1.3 - hs-source-dirs: src - default-language: Haskell2010 - -test-suite test-hslua - default-language: Haskell2010 - type: exitcode-stdio-1.0 - main-is: test-hslua-module-text.hs - hs-source-dirs: test - ghc-options: -Wall -threaded - build-depends: base - , hslua - , hslua-module-text - , tasty - , tasty-hunit - , text diff --git a/sources b/sources index dcb0435..d207390 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (hslua-module-text-0.1.2.1.tar.gz) = 06f6b5611d452479e99772bbd1eb622f56740a5fc17091cd5c49e13dacb5654deb6d073fe2f40ffb7240ab9267ea3c59d0282ef8f55fce9095525b3d29a73513 +SHA512 (hslua-module-text-0.2.1.tar.gz) = e2da17ec688c00968537e49c18d71a3e365a57bb0c8cb2639b2052d04771686ee695186726569e82f72723c78841bccdc0de33d0302e943e67f3432bd5fb9d13 From 743a54d42de6e90b635f713c937300c9c8f4263a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:29:49 +0800 Subject: [PATCH 12/25] BR prof for lib and static for executable --- ghc-hslua-module-text.spec | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 02f6c1c..2efeb7b 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-1.0.0 +# generated by cabal-rpm-1.0.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name hslua-module-text @@ -19,16 +19,11 @@ Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel -%if %{with haddock} -BuildRequires: ghc-doc -%endif -%if %{with ghc_prof} -BuildRequires: ghc-prof -%endif BuildRequires: ghc-rpm-macros -BuildRequires: ghc-bytestring-devel -BuildRequires: ghc-hslua-devel -BuildRequires: ghc-text-devel +BuildRequires: ghc-base-prof +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-hslua-prof +BuildRequires: ghc-text-prof %if %{with tests} BuildRequires: ghc-tasty-devel BuildRequires: ghc-tasty-hunit-devel @@ -42,6 +37,7 @@ UTF-8 aware subset of Lua's `string` module. %package devel Summary: Haskell %{pkg_name} library development files Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-static%{?_isa} = %{version}-%{release} %if %{defined ghc_version} Requires: ghc-compiler = %{ghc_version} %endif From d0f09b232a08e9948bbf04c23a602d3a3a346243 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 20:52:00 +0000 Subject: [PATCH 13/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hslua-module-text.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 2efeb7b..6b0d860 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lua module for text License: MIT @@ -110,6 +110,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 0.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Jens Petersen - 0.2.1-1 - update to 0.2.1 From c61e9bc485f21e79b123e20e4b439f925745865f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:50:33 +0800 Subject: [PATCH 14/25] refresh to cabal-rpm-2.0.2 --- ghc-hslua-module-text.spec | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 6b0d860..c704983 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-1.0.1 +# generated by cabal-rpm-2.0.2 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name hslua-module-text @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lua module for text License: MIT @@ -51,6 +51,7 @@ files. %if %{with haddock} %package doc Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch %description doc This package provides the Haskell %{pkg_name} library documentation. @@ -61,6 +62,7 @@ This package provides the Haskell %{pkg_name} library documentation. %package prof Summary: Haskell %{pkg_name} profiling library Requires: %{name}-devel%{?_isa} = %{version}-%{release} +Supplements: (%{name}-devel and ghc-prof) %description prof This package provides the Haskell %{pkg_name} profiling library. @@ -89,6 +91,16 @@ This package provides the Haskell %{pkg_name} profiling library. %cabal_test +%if 0%{?fedora} < 31 || 0%{?rhel} < 8 +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache +%endif + + %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -101,6 +113,7 @@ This package provides the Haskell %{pkg_name} profiling library. %if %{with haddock} %files doc -f %{name}-doc.files +%license LICENSE %endif @@ -110,6 +123,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Wed Feb 19 2020 Jens Petersen - 0.2.1-3 +- refresh to cabal-rpm-2.0.2 + * Tue Jan 28 2020 Fedora Release Engineering - 0.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From c7470280cb628f70d1a3e73da03d2250acb911de Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:26:50 +0800 Subject: [PATCH 15/25] refresh to cabal-rpm-2.0.5 --- ghc-hslua-module-text.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index c704983..edc1b7f 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -1,5 +1,5 @@ -# generated by cabal-rpm-2.0.2 -# https://fedoraproject.org/wiki/Packaging:Haskell +# generated by cabal-rpm-2.0.5 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name hslua-module-text %global pkgver %{pkg_name}-%{version} @@ -84,6 +84,7 @@ This package provides the Haskell %{pkg_name} profiling library. %install # Begin cabal-rpm install %ghc_lib_install +chmod a-x ChangeLog.md # End cabal-rpm install From 1ecbb4afecf5a94f6f485d76bffc036c74a92f93 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:55:27 +0800 Subject: [PATCH 16/25] refresh to cabal-rpm-2.0.6 --- ghc-hslua-module-text.spec | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index edc1b7f..224bb5c 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-2.0.5 +# generated by cabal-rpm-2.0.6 # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name hslua-module-text @@ -72,6 +72,7 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} +chmod a-x ChangeLog.md # End cabal-rpm setup @@ -84,7 +85,6 @@ This package provides the Haskell %{pkg_name} profiling library. %install # Begin cabal-rpm install %ghc_lib_install -chmod a-x ChangeLog.md # End cabal-rpm install @@ -92,16 +92,6 @@ chmod a-x ChangeLog.md %cabal_test -%if 0%{?fedora} < 31 || 0%{?rhel} < 8 -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache -%endif - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE From a047d2b93856b8a4cd999fbf1a6202c5b6bab228 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jul 2020 18:16:10 +0800 Subject: [PATCH 17/25] bump release --- ghc-hslua-module-text.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 224bb5c..ad6cfe6 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lua module for text License: MIT @@ -114,6 +114,9 @@ chmod a-x ChangeLog.md %changelog +* Fri Jul 17 2020 Jens Petersen - 0.2.1-4 +- refresh to cabal-rpm-2.0.6 + * Wed Feb 19 2020 Jens Petersen - 0.2.1-3 - refresh to cabal-rpm-2.0.2 From 00abc397a470cf0867d78821389f800294341ffb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 19:15:25 +0000 Subject: [PATCH 18/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hslua-module-text.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index ad6cfe6..976140e 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lua module for text License: MIT @@ -114,6 +114,9 @@ chmod a-x ChangeLog.md %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 0.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jul 17 2020 Jens Petersen - 0.2.1-4 - refresh to cabal-rpm-2.0.6 From 0e70aacbf401ba4b054a72f44984d589fadcff8c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 07:19:06 +0000 Subject: [PATCH 19/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hslua-module-text.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 976140e..cf1c030 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Lua module for text License: MIT @@ -114,6 +114,9 @@ chmod a-x ChangeLog.md %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 0.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 9a50fc84bdc16845583d23a830599ab2142b047f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 00:47:42 +0000 Subject: [PATCH 20/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hslua-module-text.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index cf1c030..5569f56 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Lua module for text License: MIT @@ -114,6 +114,9 @@ chmod a-x ChangeLog.md %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.2.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 3e62dafabdb99b4fd932dfc8564f42c853d7bb55 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 5 Aug 2021 12:37:07 +0800 Subject: [PATCH 21/25] update to 0.3.0.1 --- .gitignore | 1 + ghc-hslua-module-text.spec | 16 +++++----------- sources | 2 +- 3 files changed, 7 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 0e27d24..8b77345 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /hslua-module-text-0.1.2.1.tar.gz /hslua-module-text-0.2.1.tar.gz +/hslua-module-text-0.3.0.1.tar.gz diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 5569f56..8e24d63 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.2.1 -Release: 7%{?dist} +Version: 0.3.0.1 +Release: 1%{?dist} Summary: Lua module for text License: MIT @@ -24,10 +24,6 @@ BuildRequires: ghc-base-prof BuildRequires: ghc-bytestring-prof BuildRequires: ghc-hslua-prof BuildRequires: ghc-text-prof -%if %{with tests} -BuildRequires: ghc-tasty-devel -BuildRequires: ghc-tasty-hunit-devel -%endif # End cabal-rpm deps %description @@ -72,7 +68,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -chmod a-x ChangeLog.md # End cabal-rpm setup @@ -88,10 +83,6 @@ chmod a-x ChangeLog.md # End cabal-rpm install -%check -%cabal_test - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -114,6 +105,9 @@ chmod a-x ChangeLog.md %changelog +* Thu Aug 5 2021 Jens Petersen - 0.3.0.1-1 +- update to 0.3.0.1 + * Thu Jul 22 2021 Fedora Release Engineering - 0.2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index d207390..5adb3a9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (hslua-module-text-0.2.1.tar.gz) = e2da17ec688c00968537e49c18d71a3e365a57bb0c8cb2639b2052d04771686ee695186726569e82f72723c78841bccdc0de33d0302e943e67f3432bd5fb9d13 +SHA512 (hslua-module-text-0.3.0.1.tar.gz) = 15ba5e97261e9fa0bb4053575a0dd368048141a401200c32bb53a969cc741d2bd2d04890fef5c488fb6f476438d28e4d5ab9fea4a62aecdee285e8f1a1adecc4 From e1da0b1c1642a6f0716bacd68392f5f703ac22d5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 00:30:11 +0800 Subject: [PATCH 22/25] refresh to cabal-rpm-2.0.9 --- ghc-hslua-module-text.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 8e24d63..f021e07 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-2.0.6 +# generated by cabal-rpm-2.0.9 # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name hslua-module-text @@ -48,6 +48,7 @@ files. %package doc Summary: Haskell %{pkg_name} library documentation BuildArch: noarch +Requires: ghc-filesystem %description doc This package provides the Haskell %{pkg_name} library documentation. From 7685620268b6be044abc72dd3f2f0f2d669d0512 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 05:01:34 +0000 Subject: [PATCH 23/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hslua-module-text.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index f021e07..993dbad 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.3.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lua module for text License: MIT @@ -106,6 +106,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.3.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Aug 5 2021 Jens Petersen - 0.3.0.1-1 - update to 0.3.0.1 From 9473dd22e97203d65bab82f3c9f5aa29cdaed7a4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 18 Jun 2022 00:21:41 +0800 Subject: [PATCH 24/25] revise .cabal --- ghc-hslua-module-text.spec | 3 ++ hslua-module-text-0.3.0.1.cabal | 50 +++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 hslua-module-text-0.3.0.1.cabal diff --git a/ghc-hslua-module-text.spec b/ghc-hslua-module-text.spec index 993dbad..5adf4b7 100644 --- a/ghc-hslua-module-text.spec +++ b/ghc-hslua-module-text.spec @@ -15,9 +15,11 @@ License: MIT Url: https://hackage.haskell.org/package/%{pkg_name} # Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal # End cabal-rpm sources # Begin cabal-rpm deps: +BuildRequires: dos2unix BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-base-prof @@ -69,6 +71,7 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} +dos2unix -k -n %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup diff --git a/hslua-module-text-0.3.0.1.cabal b/hslua-module-text-0.3.0.1.cabal new file mode 100644 index 0000000..a13299c --- /dev/null +++ b/hslua-module-text-0.3.0.1.cabal @@ -0,0 +1,50 @@ +name: hslua-module-text +version: 0.3.0.1 +x-revision: 1 +synopsis: Lua module for text +description: UTF-8 aware subset of Lua's `string` module. +homepage: https://github.com/hslua/hslua-module-text +license: MIT +license-file: LICENSE +author: Albert Krewinkel +maintainer: albert+hslua@zeitkraut.de +copyright: © 2017–2021 Albert Krewinkel +category: Foreign +build-type: Simple +extra-source-files: ChangeLog.md + test/test-text.lua +cabal-version: >=1.10 +tested-with: GHC == 8.0.2 + , GHC == 8.2.2 + , GHC == 8.4.4 + , GHC == 8.6.5 + , GHC == 8.8.3 + , GHC == 8.10.1 + +source-repository head + type: git + location: https://github.com/hslua/hslua-module-text.git + +library + exposed-modules: Foreign.Lua.Module.Text + build-depends: base >= 4.8 && < 5 + , bytestring >= 0.10.2 && < 0.12 + , hslua >= 1.2 && < 1.4 + , text >= 1 && < 1.3 + hs-source-dirs: src + default-language: Haskell2010 + other-extensions: OverloadedStrings + +test-suite test-hslua + default-language: Haskell2010 + type: exitcode-stdio-1.0 + main-is: test-hslua-module-text.hs + hs-source-dirs: test + ghc-options: -Wall -threaded + build-depends: base + , hslua + , hslua-module-text + , tasty + , tasty-hunit + , tasty-lua >= 0.2 && < 0.3 + , text From d36f9d370060ee45e88450fc3ecb2259a30798ba Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 21:42:10 +0300 Subject: [PATCH 25/25] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index 5adb3a9..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (hslua-module-text-0.3.0.1.tar.gz) = 15ba5e97261e9fa0bb4053575a0dd368048141a401200c32bb53a969cc741d2bd2d04890fef5c488fb6f476438d28e4d5ab9fea4a62aecdee285e8f1a1adecc4