19
0

8 Commits

Author SHA256 Message Date
3597f941d2 Accepting request 1279245 from devel:languages:haskell
version update

OBS-URL: https://build.opensuse.org/request/show/1279245
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-network-control?expand=0&rev=5
2025-05-22 14:57:10 +00:00
51f76a8d1c osc copypac from project:devel:languages:haskell:ghc-9.10.x package:ghc-network-control revision:6, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-network-control?expand=0&rev=9
2025-05-22 10:58:58 +00:00
38183c0890 Accepting request 1267452 from devel:languages:haskell
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1267452
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-network-control?expand=0&rev=4
2025-04-07 17:15:09 +00:00
702eb29cae osc copypac from project:devel:languages:haskell:ghc-9.10.x package:ghc-network-control revision:5, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-network-control?expand=0&rev=7
2025-04-02 21:00:58 +00:00
606ace860d Accepting request 1240780 from devel:languages:haskell
version update

OBS-URL: https://build.opensuse.org/request/show/1240780
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-network-control?expand=0&rev=3
2025-01-28 15:41:08 +00:00
cacfe76071 osc copypac from project:devel:languages:haskell:ghc-9.10.x package:ghc-network-control revision:3, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-network-control?expand=0&rev=5
2025-01-28 10:11:51 +00:00
5169fed7b6 Accepting request 1222959 from devel:languages:haskell
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1222959
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-network-control?expand=0&rev=2
2024-11-12 18:20:14 +00:00
8cc3698b67 osc copypac from project:devel:languages:haskell:ghc-9.8.x package:ghc-network-control revision:2, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-network-control?expand=0&rev=3
2024-11-02 22:00:47 +00:00
4 changed files with 77 additions and 5 deletions

View File

@@ -1,3 +1,61 @@
-------------------------------------------------------------------
Sun May 18 23:42:14 UTC 2025 - Peter Simons <psimons@suse.com>
- Update network-control to version 0.1.7.
## 0.1.7
* Implementing setLRUCapacity.
-------------------------------------------------------------------
Sun Mar 30 08:30:48 UTC 2025 - Peter Simons <psimons@suse.com>
- Update network-control to version 0.1.6.
## 0.1.6
* Allowing size 0.
-------------------------------------------------------------------
Fri Mar 28 07:03:54 UTC 2025 - Peter Simons <psimons@suse.com>
- Update network-control to version 0.1.5.
## 0.1.5
* New API: `lookup'` adjusts the target priority.
* New API: `LRUCacheRef` stuffs
* `insert` rebuilds PSQ when reached the limit.
-------------------------------------------------------------------
Tue Jan 28 04:36:16 UTC 2025 - Peter Simons <psimons@suse.com>
- Update network-control to version 0.1.4.
## 0.1.4
* Using Integer instead of Int in LRUCache.
-------------------------------------------------------------------
Thu Jul 18 22:56:21 UTC 2024 - Peter Simons <psimons@suse.com>
- Update network-control to version 0.1.3.
## 0.1.3
* Simplify `maybeOpenRxWindow` and improve docs
[#7](https://github.com/kazu-yamamoto/network-control/pull/7)
## 0.1.2
* introducing a minimum size for window update
[#5](https://github.com/kazu-yamamoto/network-control/pull/5)
## 0.1.1
* Change defaultMaxData
[#4](https://github.com/kazu-yamamoto/network-control/pull/4)
## 0.1.0
* Breaking change: Renaming rxfWindow to rxfBufSize.
* Updating the document about flow control.
-------------------------------------------------------------------
Thu Nov 23 02:00:41 UTC 2023 - Peter Simons <psimons@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package ghc-network-control
#
# Copyright (c) 2023 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
@@ -18,8 +18,9 @@
%global pkg_name network-control
%global pkgver %{pkg_name}-%{version}
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 0.0.2
Version: 0.1.7
Release: 0
Summary: Library to control network protocols
License: BSD-3-Clause
@@ -34,6 +35,16 @@ BuildRequires: ghc-rpm-macros
BuildRequires: ghc-unix-time-devel
BuildRequires: ghc-unix-time-prof
ExcludeArch: %{ix86}
%if %{with tests}
BuildRequires: ghc-QuickCheck-devel
BuildRequires: ghc-QuickCheck-prof
BuildRequires: ghc-hspec-devel
BuildRequires: ghc-hspec-prof
BuildRequires: ghc-pretty-simple-devel
BuildRequires: ghc-pretty-simple-prof
BuildRequires: ghc-text-devel
BuildRequires: ghc-text-prof
%endif
%description
Common parts to control network protocols.
@@ -74,6 +85,9 @@ This package provides the Haskell %{pkg_name} profiling library.
%install
%ghc_lib_install
%check
%cabal_test
%post devel
%ghc_pkg_recache

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:134e9c6f309641bfbb508d8c3957bca76a2715e71138f4c058dba675b06326d4
size 3410

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:05d40d381e5c72beefb209b7e82877b457fbca2880e60ed849bad480b6795b10
size 7913