forked from pool/ghc-hslua-module-system
Compare commits
6 Commits
Author | SHA256 | Date | |
---|---|---|---|
1975319f7c | |||
266a76cc09 | |||
1ca7a24eb2 | |||
4420624157 | |||
efcefcb155 | |||
ea121e0bf9 |
@@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 23 17:22:10 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update hslua-module-system to version 1.2.1.1.
|
||||
## hslua-module-system-1.2.1.1
|
||||
|
||||
Released 2025-07-23.
|
||||
|
||||
- Fixed the docstring of `exists`.
|
||||
|
||||
## hslua-module-system-1.2.1
|
||||
|
||||
Released 2025-07-23.
|
||||
|
||||
- Add new function `exists`, which allows to check the existance
|
||||
and, optionally, type of a filesystem object at the given
|
||||
path.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 23 10:16:38 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update hslua-module-system to version 1.2.0.
|
||||
## hslua-module-system-1.2.0
|
||||
|
||||
Released 2025-06-23.
|
||||
|
||||
- Added new functions `read_file` and `write_file`: These are
|
||||
convenience functions that makes it easier to work with UTF-8
|
||||
encoded filenames. The functions in the Lua standard library
|
||||
expect filenames encoded in the system's codepage, often
|
||||
leading to subtle bugs.
|
||||
|
||||
- Added new functions `cp`, `rename`, and `rm`, which can be
|
||||
used similar to the functions in the `os` standard library,
|
||||
but expect paths to be given as UTF-8 instead of a file system
|
||||
specific encoding.
|
||||
|
||||
- Added new function `times`: the function allows to obtain the
|
||||
modification time and access time of a file or directory.
|
||||
|
||||
- Added new function `xdg`: this function gives easy access to
|
||||
XDG directories and search paths.
|
||||
|
||||
- Fixed module export list: the function `cmd` was only added to
|
||||
the Lua module, but not exported from the Haskell module.
|
||||
Instead, `HsLua.Core.run` was erroneously reexported.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 21 13:59:57 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update hslua-module-system to version 1.1.3.
|
||||
## hslua-module-system-1.1.3
|
||||
|
||||
Released 2025-05-21.
|
||||
|
||||
- Improved docs for the `os` field.
|
||||
|
||||
- Added new function `cmd` that runs system commands.
|
||||
|
||||
- Moved `CHANGELOG.md` to the `extra-doc-files` field in the
|
||||
cabal file and also added `README.md` to that field.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 28 08:38:56 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ghc-hslua-module-system
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -20,7 +20,7 @@
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
%bcond_with tests
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 1.1.2
|
||||
Version: 1.2.1.1
|
||||
Release: 0
|
||||
Summary: Lua module wrapper around Haskell's System module
|
||||
License: MIT
|
||||
@@ -29,6 +29,8 @@ Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-base-prof
|
||||
BuildRequires: ghc-bytestring-devel
|
||||
BuildRequires: ghc-bytestring-prof
|
||||
BuildRequires: ghc-directory-devel
|
||||
BuildRequires: ghc-directory-prof
|
||||
BuildRequires: ghc-exceptions-devel
|
||||
@@ -39,11 +41,15 @@ BuildRequires: ghc-hslua-marshalling-devel
|
||||
BuildRequires: ghc-hslua-marshalling-prof
|
||||
BuildRequires: ghc-hslua-packaging-devel
|
||||
BuildRequires: ghc-hslua-packaging-prof
|
||||
BuildRequires: ghc-process-devel
|
||||
BuildRequires: ghc-process-prof
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-temporary-devel
|
||||
BuildRequires: ghc-temporary-prof
|
||||
BuildRequires: ghc-text-devel
|
||||
BuildRequires: ghc-text-prof
|
||||
BuildRequires: ghc-time-devel
|
||||
BuildRequires: ghc-time-prof
|
||||
ExcludeArch: %{ix86}
|
||||
%if %{with tests}
|
||||
BuildRequires: ghc-tasty-devel
|
||||
@@ -110,7 +116,7 @@ This package provides the Haskell %{pkg_name} profiling library.
|
||||
%license LICENSE
|
||||
|
||||
%files devel -f %{name}-devel.files
|
||||
%doc CHANGELOG.md
|
||||
%doc CHANGELOG.md README.md
|
||||
|
||||
%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files
|
||||
%license LICENSE
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d4468e7eeec241b665da5ff27e254398a7f612c079d5181b396b20c8caf521de
|
||||
size 9057
|
3
hslua-module-system-1.2.1.1.tar.gz
Normal file
3
hslua-module-system-1.2.1.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:da9bc01443fdde95249d20f1cc9d2744b91e4a047c69881f69b4599509616832
|
||||
size 15465
|
Reference in New Issue
Block a user