diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 1ea127d..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/zswap-cli-*.tar.gz diff --git a/changelog b/changelog deleted file mode 100644 index a0ca62a..0000000 --- a/changelog +++ /dev/null @@ -1,2 +0,0 @@ -* Sat Jul 20 2024 Fedora Release Engineering - 0.9.1-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..f5298be --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Retired EPEL branch. diff --git a/sources b/sources deleted file mode 100644 index adf8097..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (zswap-cli-1.1.2.tar.gz) = 54d038f6e83ace215675d55c964ffac1b65a3cea31779a72676803631d0234e0e07abcb350bca76c79ce538795d7dd526b7a596ed6aa611470415a7988c11ebb diff --git a/zswap-cli.spec b/zswap-cli.spec deleted file mode 100644 index 85e05a9..0000000 --- a/zswap-cli.spec +++ /dev/null @@ -1,73 +0,0 @@ -Name: zswap-cli -Version: 1.1.2 -Release: %autorelease - -License: MIT -Summary: Command-line tool to control the zswap options -URL: https://github.com/xvitaly/%{name} -Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz - -# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval -%if 0%{?fedora} && 0%{?fedora} >= 42 -ExcludeArch: %{ix86} -%endif - -BuildRequires: boost-devel -BuildRequires: glibc-headers -BuildRequires: kernel-headers - -BuildRequires: cmake -BuildRequires: gcc-c++ -BuildRequires: ninja-build -BuildRequires: pandoc -BuildRequires: systemd - -%{?systemd_requires} - -%description -Zswap-cli is a command-line tool to control the zswap kernel module -options. - -Zswap is a compressed cache for swap pages. It takes pages that are in the -process of being swapped out to disk and tries to compress them into a -RAM-based memory pool with dynamic allocation. - -It trades CPU cycles for a significant performance boost since reading from -a compressed cache is much faster than reading from a swap device. - -%prep -%autosetup -p1 - -%build -%cmake -G Ninja \ - -DCMAKE_BUILD_TYPE=Release \ - -DBUILD_DOCS:BOOL=OFF \ - -DBUILD_MANPAGE:BOOL=ON \ - -DBUILD_SHELL_COMPLETION:BOOL=ON \ - -DSYSTEMD_INTEGRATION:BOOL=ON -%cmake_build - -%post -%systemd_post %{name}.service - -%preun -%systemd_preun %{name}.service - -%postun -%systemd_postun_with_restart %{name}.service - -%install -%cmake_install - -%files -%doc docs/* -%license LICENSE -%{_bindir}/%{name} -%{_unitdir}/%{name}.service -%{_mandir}/man1/%{name}.* -%dir %{_sysconfdir}/%{name} -%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf -%{bash_completions_dir}/%{name} - -%changelog -%autochangelog