Compare commits
1 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 39d6d1f048 |
@@ -1,57 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 10 17:53:01 UTC 2021 - Peter Simons <psimons@suse.com>
|
||||
Thu Feb 1 16:26:43 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update git-lfs to version 1.2.0.
|
||||
haskell-git-lfs (1.2.0) unstable; urgency=medium
|
||||
- Update git-lfs to version 1.2.2.
|
||||
haskell-git-lfs (1.2.2) unstable; urgency=medium
|
||||
|
||||
* Avoid blindly copying over Content-Encoding and Transfer-Encoding
|
||||
headers provided by the git-lfs server. This fixes interoperation
|
||||
with gitlab's implementation of the git-lfs protocol, which sends
|
||||
Transfer-Encoding chunked.
|
||||
* uploadOperationRequests changed to provide a ServerSupportsChunks
|
||||
value when constructing the RequestBody. This allows using
|
||||
Transfer-Encoding chunked when the server supports it.
|
||||
(API change)
|
||||
* Expand aeson bounds to allow 2.2.x
|
||||
* Expand text bounds to allow 2.1.x
|
||||
* Expand bytestring boulds to allow 0.12
|
||||
|
||||
-- Joey Hess <id@joeyh.name> Wed, 10 Nov 2021 13:52:11 -0400
|
||||
-- Joey Hess <id@joeyh.name> Thu, 01 Feb 2024 12:25:41 -0400
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 19 07:21:47 UTC 2021 - psimons@suse.com
|
||||
Fri Jun 23 17:54:46 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update git-lfs to version 1.1.2.
|
||||
haskell-git-lfs (1.1.2) unstable; urgency=medium
|
||||
|
||||
* Expand aeson bounds to allow 2.x
|
||||
(This may fix a DOS attack, although any impact on git-lfs has not been
|
||||
determined.)
|
||||
* Expand containers bounds to allow 0.5.x
|
||||
|
||||
-- Joey Hess <id@joeyh.name> Mon, 18 Oct 2021 16:20:25 -0400
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||
|
||||
- disable %{ix86} build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 19 19:50:18 UTC 2020 - psimons@suse.com
|
||||
|
||||
- Update git-lfs to version 1.1.1.
|
||||
haskell-git-lfs (1.1.1) unstable; urgency=medium
|
||||
|
||||
* Expand aeson bounds to allow 1.5.x
|
||||
* Expand http-client bounds to allow 0.7.x
|
||||
* Improve other bounds that were too relaxed.
|
||||
|
||||
-- Joey Hess <id@joeyh.name> Thu, 19 Nov 2020 12:11:00 -0400
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 18 10:44:56 UTC 2020 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Replace %setup -q with the more modern %autosetup macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 21 09:48:02 UTC 2020 - psimons@suse.com
|
||||
|
||||
- Add git-lfs at version 1.1.0.
|
||||
- Add git-lfs at version 1.2.1.
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ghc-git-lfs
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,8 +17,9 @@
|
||||
|
||||
|
||||
%global pkg_name git-lfs
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 1.2.0
|
||||
Version: 1.2.2
|
||||
Release: 0
|
||||
Summary: Git-lfs protocol
|
||||
License: AGPL-3.0-or-later
|
||||
@@ -26,14 +27,24 @@ URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-aeson-devel
|
||||
BuildRequires: ghc-aeson-prof
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-base-prof
|
||||
BuildRequires: ghc-bytestring-devel
|
||||
BuildRequires: ghc-bytestring-prof
|
||||
BuildRequires: ghc-case-insensitive-devel
|
||||
BuildRequires: ghc-case-insensitive-prof
|
||||
BuildRequires: ghc-containers-devel
|
||||
BuildRequires: ghc-containers-prof
|
||||
BuildRequires: ghc-http-client-devel
|
||||
BuildRequires: ghc-http-client-prof
|
||||
BuildRequires: ghc-http-types-devel
|
||||
BuildRequires: ghc-http-types-prof
|
||||
BuildRequires: ghc-network-uri-devel
|
||||
BuildRequires: ghc-network-uri-prof
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-text-devel
|
||||
BuildRequires: ghc-text-prof
|
||||
ExcludeArch: %{ix86}
|
||||
|
||||
%description
|
||||
@@ -49,6 +60,22 @@ Requires(postun): ghc-compiler = %{ghc_version}
|
||||
%description devel
|
||||
This package provides the Haskell %{pkg_name} library development files.
|
||||
|
||||
%package -n ghc-%{pkg_name}-doc
|
||||
Summary: Haskell %{pkg_name} library documentation
|
||||
Requires: ghc-filesystem
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n ghc-%{pkg_name}-doc
|
||||
This package provides the Haskell %{pkg_name} library documentation.
|
||||
|
||||
%package -n ghc-%{pkg_name}-prof
|
||||
Summary: Haskell %{pkg_name} profiling library
|
||||
Requires: ghc-%{pkg_name}-devel = %{version}-%{release}
|
||||
Supplements: (ghc-%{pkg_name}-devel and ghc-prof)
|
||||
|
||||
%description -n ghc-%{pkg_name}-prof
|
||||
This package provides the Haskell %{pkg_name} profiling library.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{pkg_name}-%{version}
|
||||
|
||||
@@ -70,4 +97,9 @@ This package provides the Haskell %{pkg_name} library development files.
|
||||
%files devel -f %{name}-devel.files
|
||||
%doc CHANGELOG
|
||||
|
||||
%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files
|
||||
%license LICENSE
|
||||
|
||||
%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files
|
||||
|
||||
%changelog
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6ad1803a0b6725fcbe49acb03de071f6be4825bc3a8f9f548dbaf27758d063c7
|
||||
size 17277
|
||||
BIN
git-lfs-1.2.2.tar.gz
LFS
Normal file
BIN
git-lfs-1.2.2.tar.gz
LFS
Normal file
Binary file not shown.
Reference in New Issue
Block a user