mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
Compare commits
84 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e2b9daacdb | |||
| 84101b30ba | |||
| f10c1c8ecf | |||
| 35ec2cbb45 | |||
| ee8a88ebd6 | |||
| ad906e8de3 | |||
| 2400e909f1 | |||
| 307962d675 | |||
| 6d2be7bfd7 | |||
| 6522c80133 | |||
| b057281c74 | |||
| 88ce2fd962 | |||
| 8634c25f5e | |||
| 9bcc1e6a53 | |||
| 0ea4220fc1 | |||
| c8cdcd2478 | |||
| 6341f704e8 | |||
| ed130b8d7a | |||
| fe321d00c1 | |||
| 9ce34baabb | |||
| 595f5d09e1 | |||
| 2aa4c70624 | |||
| ae0ba3538c | |||
| a248cc050a | |||
| 45e7a74cd2 | |||
| 75219893a3 | |||
| 78de10655e | |||
| 80e8d46c25 | |||
| cf980a8624 | |||
| b46d5d694f | |||
| 1d610d245d | |||
| dd65c0b7ec | |||
| 73dc8d565e | |||
| d4be69e827 | |||
| 07f1dc593a | |||
| d506718dbb | |||
| 7edb7f91e3 | |||
| 0d4b4724e2 | |||
| 8d202a89c7 | |||
| 0523ed1563 | |||
| 79ea101859 | |||
| aa37d99322 | |||
| 4d7d188e18 | |||
| 08f94da29d | |||
| 14b4b90824 | |||
| c559f54084 | |||
| 67c2901bb6 | |||
| f52e74dc37 | |||
| 4932c3d6b8 | |||
| c262594fa6 | |||
| 61c98fff9b | |||
| 08b9d8ec9f | |||
| 3eb2c54611 | |||
| de18809f38 | |||
| a7f791a257 | |||
| 35c39d0377 | |||
| b639fbcc56 | |||
| e4dd53caee | |||
| f8a34ffc66 | |||
| 2f6bfd85d6 | |||
| a1881d0419 | |||
| d2e74d4b37 | |||
| 2524d251fa | |||
| 9b0aea3f73 | |||
| 200a16ade6 | |||
| 2e2b55be1e | |||
| dee57fd30a | |||
| dde2f3d92f | |||
| bbd29c8c2b | |||
| d460c5204b | |||
| f3e8e7b9eb | |||
| 1b7336f33a | |||
| 2decf6bf2a | |||
| 2e24ad2543 | |||
| d48ce8bd2e | |||
| df4095cfbf | |||
| 587bc69887 | |||
| 80f3965626 | |||
| 9a1fc5ce4f | |||
| 9adca32e41 | |||
| 287c6a82ee | |||
| de584018ea | |||
| 62dd4c3bbc | |||
| 8e461b1212 |
@@ -6,7 +6,7 @@
|
||||
// Note: ACTIONS_CACHE_SERVICE_V2 and SCCACHE_GHA_ENABLED are set at workflow level
|
||||
module.exports = async ({ github, context, core, exec }) => {
|
||||
// Find sccache path (try which command)
|
||||
let sccachePath = "sccache";
|
||||
let sccachePath = "/usr/bin/sccache";
|
||||
try {
|
||||
const result = await exec.getExecOutput("which", ["sccache"], {
|
||||
ignoreReturnCode: true,
|
||||
@@ -31,6 +31,13 @@ module.exports = async ({ github, context, core, exec }) => {
|
||||
core.warning(`Could not get sccache version: ${e.message}`);
|
||||
}
|
||||
|
||||
// Enable caching
|
||||
core.exportVariable("RUSTC_WRAPPER", sccachePath);
|
||||
core.exportVariable("SCCACHE_GHA_ENABLED", "true");
|
||||
|
||||
// Disable Cargo incremental builds to not interfere with caching
|
||||
core.exportVariable("CARGO_INCREMENTAL", "false");
|
||||
|
||||
// Debug: Show what environment variables are available
|
||||
core.info("=== Environment Variables Diagnostic ===");
|
||||
core.info(`SCCACHE_GHA_ENABLED: ${process.env.SCCACHE_GHA_ENABLED}`);
|
||||
@@ -106,6 +113,7 @@ module.exports = async ({ github, context, core, exec }) => {
|
||||
}
|
||||
|
||||
if (bustCache) {
|
||||
core.exportVariable("SCCACHE_BUST_CACHE", "true");
|
||||
core.exportVariable("SCCACHE_RECACHE", "1");
|
||||
core.info("SCCACHE_RECACHE enabled because bust_cache is true");
|
||||
}
|
||||
|
||||
@@ -55,6 +55,18 @@ jobs:
|
||||
- name: Set up git repository
|
||||
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
||||
|
||||
- name: Configure sccache
|
||||
id: sccache
|
||||
if: ${{ !contains(matrix.pkg.labels.sccache, '0') }}
|
||||
uses: actions/github-script@v8
|
||||
env:
|
||||
SCCACHE_GHA_VERSION: ${{ matrix.version }}-${{ matrix.pkg.arch }}-${{ matrix.pkg.pkg }}
|
||||
SCCACHE_GHA_CACHE_FROM: ${{ matrix.version }}-${{ matrix.pkg.arch }}-${{ matrix.pkg.pkg }}
|
||||
with:
|
||||
script: |
|
||||
const script = require('./.github/scripts/configure-sccache.js')
|
||||
await script({github, context, core, exec})
|
||||
|
||||
- name: CI Setup Script
|
||||
if: ${{ !contains(matrix.pkg.labels, 'mock') }}
|
||||
run: |
|
||||
@@ -69,21 +81,17 @@ jobs:
|
||||
dir=$(dirname ${{ matrix.pkg.pkg }})
|
||||
dnf5 builddep -y ${dir}/*.spec
|
||||
|
||||
- name: Configure sccache
|
||||
if: matrix.pkg.labels['sccache'] != '0'
|
||||
run: |
|
||||
set -euo pipefail
|
||||
echo "RUSTC_WRAPPER=/usr/bin/sccache" >> $GITHUB_ENV
|
||||
echo "CARGO_INCREMENTAL=false" >> $GITHUB_ENV
|
||||
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
|
||||
if [ "${{ inputs.bust_cache }}" = "true" ]; then
|
||||
echo "SCCACHE_BUST_CACHE=true" >> $GITHUB_ENV
|
||||
fi
|
||||
|
||||
|
||||
- name: Build with Andaman
|
||||
run: anda build -D "vendor Terra" -D "__python %{__python3}" ${{ matrix.pkg.pkg }} -c terra-${{ matrix.version }}-${{ matrix.pkg.arch }} ${{ !matrix.pkg.labels.mock == '1' && '-rrpmbuild' || '' }}
|
||||
|
||||
- name: Report Cache Summary
|
||||
if: steps.sccache.outcome == 'success'
|
||||
uses: actions/github-script@v8
|
||||
with:
|
||||
script: |
|
||||
const script = require('./.github/scripts/sccache-stats.js')
|
||||
await script({github, context, core, exec})
|
||||
|
||||
- name: Generating artifact name
|
||||
id: art
|
||||
run: |
|
||||
|
||||
@@ -48,6 +48,7 @@ jobs:
|
||||
git add anda
|
||||
git commit -S -a -m "$msg"
|
||||
}
|
||||
copy_over f44 || true
|
||||
copy_over f43 || true
|
||||
copy_over f42 || true
|
||||
copy_over el10 || true
|
||||
|
||||
@@ -48,6 +48,7 @@ jobs:
|
||||
git add anda
|
||||
git commit -S -a -m "$msg"
|
||||
}
|
||||
copy_over f44 || true
|
||||
copy_over f43 || true
|
||||
copy_over f42 || true
|
||||
copy_over el10 || true
|
||||
|
||||
@@ -48,6 +48,7 @@ jobs:
|
||||
git add anda
|
||||
git commit -S -a -m "$msg"
|
||||
}
|
||||
copy_over f44 || true
|
||||
copy_over f43 || true
|
||||
copy_over f42 || true
|
||||
copy_over el10 || true
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: bazzite-portal
|
||||
Version: 0.1.6
|
||||
Release: 2%?dist
|
||||
Release: 3%?dist
|
||||
Summary: Bazzite Portal is a tabbed frontend for curated script execution, with a focus on distro specific QOL shortcuts
|
||||
URL: https://github.com/ublue-os/yafti-gtk
|
||||
Source0: https://github.com/ublue-os/yafti-gtk/archive/refs/tags/v%{version}.tar.gz
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: bitwarden-cli.bin
|
||||
Version: 2026.1.0
|
||||
Release: 1%?dist
|
||||
Release: 2%?dist
|
||||
Summary: Bitwarden command-line client
|
||||
License: GPL-3.0-only
|
||||
URL: https://bitwarden.com
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: chdig
|
||||
Version: 26.2.1
|
||||
Version: 26.2.3
|
||||
Release: 1%?dist
|
||||
Summary: Dig into ClickHouse with TUI interface
|
||||
URL: https://github.com/azat/chdig
|
||||
|
||||
@@ -23,26 +23,15 @@ Requires: libappindicator-gtk3
|
||||
Requires: coolercontrold
|
||||
BuildRequires: nodejs-npm libdrm-devel curl wget file mold
|
||||
BuildRequires: systemd-rpm-macros anda-srpm-macros cargo >= 1.75.0 cargo-rpm-macros
|
||||
BuildRequires: binutils bison cmake flex gcc gcc-c++ libtool strace
|
||||
BuildRequires: binutils bison cmake flex gcc gcc-c++ libtool strace protobuf-compiler
|
||||
BuildRequires: libappstream-glib
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: cmake(Qt6)
|
||||
BuildRequires: cmake(Qt6WebEngineWidgets)
|
||||
%description %_desc
|
||||
|
||||
%package liqctld
|
||||
Summary: CoolerControl daemon for interacting with liquidctl devices on a system level
|
||||
Requires: coolercontrold
|
||||
BuildRequires: python3-devel python3-wheel python3-liquidctl python3-setproctitle python3-fastapi python3-uvicorn python3-pip
|
||||
%description liqctld %_desc
|
||||
coolercontrol-liqctld is a CoolerControl daemon for interacting with liquidctl devices on a system level, and is
|
||||
installed as the coolercontrol-liqctld application. Its main purpose is to wrap the underlying
|
||||
liquidctl library providing an API interface that the main coolercontrol daemon interacts with.
|
||||
It also enables parallel device communication and access to specific device properties.
|
||||
|
||||
%package -n coolercontrold
|
||||
Summary: Monitor and control your cooling devices.
|
||||
Requires: coolercontrol-liqctld
|
||||
BuildRequires: pkgconfig(webkit2gtk-4.1) pkgconfig(openssl) pkgconfig(librsvg-2.0)
|
||||
BuildRequires: libappindicator-gtk3-devel
|
||||
%description -n coolercontrold %_desc
|
||||
@@ -56,7 +45,7 @@ supported devices. It has an API that services client programs like the coolerco
|
||||
%autosetup
|
||||
|
||||
pushd coolercontrold
|
||||
%cargo_prep_online &
|
||||
%cargo_prep_online
|
||||
popd
|
||||
|
||||
pushd coolercontrol-ui
|
||||
@@ -71,29 +60,23 @@ pushd coolercontrol-ui
|
||||
npm run build-only &
|
||||
popd
|
||||
|
||||
pushd coolercontrol-liqctld
|
||||
%pyproject_wheel
|
||||
popd
|
||||
|
||||
pushd coolercontrol
|
||||
%cmake
|
||||
%cmake_build &
|
||||
%cmake_build
|
||||
popd
|
||||
|
||||
pushd coolercontrol-ui
|
||||
%make_build
|
||||
popd
|
||||
|
||||
pushd coolercontrold
|
||||
%{cargo_license_online} > LICENSE.dependencies &
|
||||
%{cargo_license_online} > LICENSE.dependencies
|
||||
wait
|
||||
cp -rfp ../coolercontrol-ui/dist/* resources/app/
|
||||
%cargo_build
|
||||
popd
|
||||
|
||||
%install
|
||||
pushd coolercontrol-liqctld
|
||||
#define _pyproject_wheeldir .
|
||||
%pyproject_install
|
||||
%pyproject_save_files coolercontrol_liqctld
|
||||
popd
|
||||
|
||||
pushd coolercontrold
|
||||
install -Dpm755 target/rpm/coolercontrold %buildroot%_bindir/coolercontrold
|
||||
install -Dpm644 LICENSE.dependencies %buildroot%_datadir/licenses/coolercontrold/LICENSE.dependencies
|
||||
@@ -103,7 +86,6 @@ pushd coolercontrol/
|
||||
%cmake_install
|
||||
popd
|
||||
|
||||
install -Dpm644 packaging/systemd/coolercontrol-liqctld.service %buildroot%_unitdir/coolercontrol-liqctld.service
|
||||
desktop-file-install --dir=%buildroot%_datadir/applications packaging/metadata/%rdnn.desktop
|
||||
install -Dpm644 packaging/metadata/%rdnn.svg %buildroot%_iconsdir/hicolor/scalable/apps/%rdnn.svg
|
||||
install -Dpm644 packaging/metadata/%rdnn.png %buildroot%_iconsdir/hicolor/256x256/apps/%rdnn.svg
|
||||
@@ -115,7 +97,6 @@ install -Dpm644 packaging/metadata/%rdnn.metainfo.xml %buildroot%_metainfodir/%r
|
||||
|
||||
%check
|
||||
appstream-util validate-relax --nonet %buildroot%_metainfodir/%rdnn.metainfo.xml
|
||||
%pyproject_check_import
|
||||
|
||||
|
||||
%post -n coolercontrold
|
||||
@@ -127,10 +108,6 @@ appstream-util validate-relax --nonet %buildroot%_metainfodir/%rdnn.metainfo.xml
|
||||
%postun -n coolercontrold
|
||||
%systemd_postun_with_restart coolercontrold.service
|
||||
|
||||
# coolercontrold.service automatically uses the liqctld service, so there are
|
||||
# no scriptlets for liqctld.
|
||||
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
@@ -146,12 +123,6 @@ appstream-util validate-relax --nonet %buildroot%_metainfodir/%rdnn.metainfo.xml
|
||||
%_bindir/coolercontrold
|
||||
%_unitdir/coolercontrold.service
|
||||
|
||||
%files liqctld -f %pyproject_files
|
||||
%doc coolercontrol-liqctld/README.md
|
||||
%license LICENSE
|
||||
%_bindir/coolercontrol-liqctld
|
||||
%_unitdir/coolercontrol-liqctld.service
|
||||
|
||||
%changelog
|
||||
* Thu Aug 15 2024 madonuko <mado@fyralabs.com> - 1.4.0-1
|
||||
- Initial package
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-canary-openasar
|
||||
Version: 0.0.873
|
||||
Version: 0.0.877
|
||||
Release: 1%?dist
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-canary
|
||||
Version: 0.0.873
|
||||
Version: 0.0.877
|
||||
Release: 1%?dist
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: discord.com
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-openasar
|
||||
Version: 0.0.125
|
||||
Version: 0.0.126
|
||||
Release: 1%?dist
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord
|
||||
Version: 0.0.125
|
||||
Version: 0.0.126
|
||||
Release: 1%?dist
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: https://discord.com
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#? https://github.com/flameshot-org/flameshot/blob/master/packaging/rpm/fedora/flameshot.spec
|
||||
|
||||
%global ver 13.3.0
|
||||
%global commit 3ef8f093d35518cc22880154d0c0e774e6403b24
|
||||
%global commit 76d883362fa1872f3e0aa31c179c98ebbd0effff
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
%global commit_date 20260220
|
||||
%global commit_date 20260225
|
||||
%global devel_name QtColorWidgets
|
||||
%global _distro_extra_cflags -fuse-ld=mold
|
||||
%global _distro_extra_cxxflags -fuse-ld=mold
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 2f77c277df1650512abff175566b0386d9e2f0c5
|
||||
%global commit 16ed7e5970a8aec1e01b473d32c6aa26e3c2b538
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260213
|
||||
%global commit_date 20260224
|
||||
%global ver 2.0.1^
|
||||
%global base_name goofcord
|
||||
%global git_name GoofCord
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
Name: gurk
|
||||
Version: 0.8.1
|
||||
Release: 2%?dist
|
||||
Release: 3%?dist
|
||||
Summary: Signal Messenger client for terminal
|
||||
License: AGPL-3.0-or-later AND (MIT OR Apache-2.0) AND Unicode-3.0 AND (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND ISC AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-3-Clause AND (BSD-3-Clause OR Apache-2.0) AND (BSD-3-Clause OR MIT OR Apache-2.0) AND BSL-1.0 AND CDLA-Permissive-2.0 AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR BSD-1-Clause) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Zlib OR Apache-2.0) AND MPL-2.0 AND (Unlicense OR MIT) AND Zlib AND (Zlib OR Apache-2.0 OR MIT)
|
||||
URL: https://github.com/boxdot/gurk-rs
|
||||
@@ -11,6 +11,7 @@ Source: %url/archive/refs/tags/v%version.tar.gz
|
||||
BuildRequires: cargo-rpm-macros >= 24
|
||||
BuildRequires: glibc-devel mold perl openssl-devel protobuf-devel
|
||||
Requires: glibc libgcc sqlcipher
|
||||
Provides: gurk-rs
|
||||
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global crate halloy
|
||||
|
||||
Name: halloy
|
||||
Version: 2026.2
|
||||
Version: 2026.3
|
||||
Release: 1%?dist
|
||||
Summary: An open-source IRC client written in Rust, with the Iced GUI library
|
||||
Packager: Yoong jin <solomoncyj@gmail.com>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
%endif
|
||||
|
||||
Name: helium-browser-bin
|
||||
Version: 0.9.3.1
|
||||
Version: 0.9.4.1
|
||||
Release: 1%?dist
|
||||
Summary: Private, fast, and honest web browser based on Chromium
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 018467f2ea1f558052ef2c4046b517eaa94ae2dd
|
||||
%global commit_date 20260218
|
||||
%global commit 1d2b5d8d588034bace6b03c21d6194fe174589c8
|
||||
%global commit_date 20260224
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global debug_package %nil
|
||||
%global __strip /bin/true
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Disable X11 for RHEL 10+
|
||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||
|
||||
%global commit 250d6056c3ebef4c47dbc789e6fbe0ffc3f724c1
|
||||
%global commit d54bad5636924ab3f39cb6e397b94b6aa8a7c433
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260221
|
||||
%global commit_date 20260226
|
||||
%global ver 0.41.0
|
||||
|
||||
Name: mpv-nightly
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global pypi_name protontricks
|
||||
|
||||
Name: terra-%{pypi_name}
|
||||
Version: 1.13.1
|
||||
Version: 1.14.0
|
||||
Release: 1%?dist
|
||||
Summary: Simple wrapper that does winetricks things for Proton enabled games
|
||||
BuildArch: noarch
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global ver 2026-02-20
|
||||
%global ver 2026-02-25
|
||||
%global goodver %(echo %ver | sed 's/-//g')
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
%bcond_without mold
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
Name: signal-desktop
|
||||
%electronmeta -aD
|
||||
Version: 7.90.0
|
||||
Version: 8.0.0
|
||||
Release: 1%?dist
|
||||
Summary: A private messenger for Windows, macOS, and Linux
|
||||
URL: https://signal.org
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
%global _build_id_links none
|
||||
|
||||
%global toolchain clang
|
||||
|
||||
Name: twintaillauncher
|
||||
@@ -48,7 +50,12 @@ cd ..
|
||||
|
||||
|
||||
%install
|
||||
%tauri_install_bin
|
||||
%tauri_install
|
||||
mkdir -p %{buildroot}/%{_libdir}/twintaillauncher/resources
|
||||
mv %{buildroot}/%{_datadir}/cargo/registry/twintaillauncher-%{version}/resources/ %{buildroot}/%{_libdir}/twintaillauncher/resources
|
||||
rm -rf %{buildroot}/%{_datadir}/cargo/registry/twintaillauncher-%{version}
|
||||
|
||||
|
||||
%tauri_cargo_license_summary
|
||||
%{tauri_cargo_license} > LICENSE.dependencies
|
||||
|
||||
@@ -65,6 +72,7 @@ install -Dm644 public/launcher-icon-128.png %{buildroot}%{_hicolordir}/128x128/a
|
||||
%doc README.md
|
||||
|
||||
%{_bindir}/twintaillauncher
|
||||
%{_libdir}/twintaillauncher/resources
|
||||
%{_hicolordir}/512x512/apps/%{name}.png
|
||||
%{_hicolordir}/128x128/apps/%{name}.png
|
||||
%_appsdir/twintaillauncher.desktop
|
||||
@@ -73,5 +81,7 @@ install -Dm644 public/launcher-icon-128.png %{buildroot}%{_hicolordir}/128x128/a
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Feb 19 2026 Yoong Jin <solomoncyj@gmail.com> - 1.1.15-1
|
||||
- Fix resources
|
||||
* Tue Feb 3 2026 Yoong Jin <solomoncyj@gmail.com> - 1.1.15-0
|
||||
- Initial Package
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Fedora sometimes sources the snapshots under stable versions and just bumps release
|
||||
# For user clarity I have separated these into different packages
|
||||
%global commit 02af8ba21a6d2648f72b5601f8b8b73a1eeb9e64
|
||||
%global commit b792287f5bec9086916aa9b81788e0ea38f02c24
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 20260125
|
||||
%global commit_date 20260219
|
||||
%global commit_date 20260222
|
||||
|
||||
Name: winetricks-git
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
+4
-4
@@ -3,7 +3,7 @@
|
||||
|
||||
Name: gnome-shell-extension-%{extension}
|
||||
Version: 12
|
||||
Release: 2%?dist
|
||||
Release: 3%?dist
|
||||
Summary: GNOME Shell extension to bring back the app menu
|
||||
License: GPL-3.0-only
|
||||
URL: https://github.com/fthx/appmenu-is-back
|
||||
@@ -22,12 +22,12 @@ This extension brings back the app menu in the top panel, for GNOME 45 and later
|
||||
%autosetup -n appmenu-is-back-%{version} -p1
|
||||
|
||||
%install
|
||||
install -Dm644 metadata.json %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/metadata.json
|
||||
install -Dm644 extension.js %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/extension.js
|
||||
install -Dm644 metadata.json %{buildroot}%{_gnomeextensionsdir}/metadata.json
|
||||
install -Dm644 extension.js %{buildroot}%{_gnomeextensionsdir}/extension.js
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%{_datadir}/gnome-shell/extensions/%{uuid}
|
||||
%{_gnomeextensionsdir}
|
||||
|
||||
%changelog
|
||||
* Thu Nov 16 2023 Lleyton Gray <lleyton@fyralabs.com> - 2-1
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
|
||||
Name: gnome-shell-extension-%{extension}
|
||||
Version: 0~%{commit_date}git.%{shortcommit}
|
||||
Release: 1%?dist
|
||||
Release: 2%?dist
|
||||
Summary: Battery remaining time extension for GNOME Shell
|
||||
License: GPL-2.0-only
|
||||
URL: https://github.com/pomoke/battery_time
|
||||
@@ -31,14 +31,14 @@ Remaining time is shown inline, so no additional menu item is created (currently
|
||||
%autosetup -n %{extension}-%{commit}
|
||||
|
||||
%install
|
||||
install -Dm644 metadata.json %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/metadata.json
|
||||
install -Dm644 extension.js %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/extension.js
|
||||
install -Dm644 metadata.json %{buildroot}%{_gnomeextensionsdir}/metadata.json
|
||||
install -Dm644 extension.js %{buildroot}%{_gnomeextensionsdir}/extension.js
|
||||
cp %{SOURCE1} LICENSE
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{_datadir}/gnome-shell/extensions/%{uuid}
|
||||
%{_gnomeextensionsdir}
|
||||
|
||||
%changelog
|
||||
* Mon Jan 05 2026 Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
|
||||
Name: gnome-shell-extension-%{extension}
|
||||
Version: %ver^%commit_date.%shortcommit
|
||||
Release: 1%?dist
|
||||
Release: 2%?dist
|
||||
Summary: GPU Profile switcher Gnome-Shell-Extension for ASUS laptops using Supergfxctl
|
||||
License: GPL-3.0-only
|
||||
URL: https://github.com/chikobara/GPU-Switcher-Supergfxctl
|
||||
@@ -26,13 +26,13 @@ GPU Profile switcher Gnome-Shell-Extension for ASUS laptops using Supergfxctl
|
||||
%autosetup -n GPU-Switcher-Supergfxctl-%{commit} -p1
|
||||
|
||||
%install
|
||||
install -Dm644 metadata.json %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/metadata.json
|
||||
install -Dm644 extension.js %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/extension.js
|
||||
install -Dm644 metadata.json %{buildroot}%{_gnomeextensionsdir}/metadata.json
|
||||
install -Dm644 extension.js %{buildroot}%{_gnomeextensionsdir}/extension.js
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_datadir}/gnome-shell/extensions/%{uuid}
|
||||
%{_gnomeextensionsdir}
|
||||
|
||||
%changelog
|
||||
* Mon Oct 27 2025 june-fish <june@fyralabs.com> - 11
|
||||
|
||||
+4
-4
@@ -3,7 +3,7 @@
|
||||
|
||||
Name: gnome-shell-extension-%{extension}
|
||||
Version: 9
|
||||
Release: 2%?dist
|
||||
Release: 3%?dist
|
||||
Summary: GNOME extension that removes the 'Window is ready' notification and brings the window into focus instead
|
||||
License: AGPL-3.0-only
|
||||
URL: https://github.com/zalckos/GrandTheftFocus
|
||||
@@ -24,13 +24,13 @@ GNOME extension. Removes the 'Window is ready' notification and brings the windo
|
||||
%autosetup -n GrandTheftFocus-%version
|
||||
|
||||
%install
|
||||
install -Dm644 grand-theft-focus@zalckos.github.com/metadata.json %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/metadata.json
|
||||
install -Dm644 grand-theft-focus@zalckos.github.com/extension.js %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/extension.js
|
||||
install -Dm644 grand-theft-focus@zalckos.github.com/metadata.json %{buildroot}%{_gnomeextensionsdir}/metadata.json
|
||||
install -Dm644 grand-theft-focus@zalckos.github.com/extension.js %{buildroot}%{_gnomeextensionsdir}/extension.js
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_datadir}/gnome-shell/extensions/%{uuid}
|
||||
%{_gnomeextensionsdir}
|
||||
|
||||
%changelog
|
||||
* Tue Dec 30 2025 Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
+8
-8
@@ -1,5 +1,5 @@
|
||||
%global commit a6a8b8a717f2255c3c1b3af4ce205ebc3a65e0af
|
||||
%global commit_date 20260130
|
||||
%global commit c3fdb58e398ce387892919d56fc995d74b949349
|
||||
%global commit_date 20260224
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global extension multi-monitors-bar
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
Name: gnome-shell-extension-%{extension}
|
||||
Version: 0~%{commit_date}git.%{shortcommit}
|
||||
Release: 1%?dist
|
||||
Release: 2%?dist
|
||||
Summary: Add multiple monitors overview and panel for GNOME Shell. This is an updated fork with GNOME 46 compatibility
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://github.com/FrederykAbryan/multi-monitors-bar_fapv2
|
||||
@@ -32,10 +32,10 @@ Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
%install
|
||||
find . -name "*.gschema.xml"
|
||||
mkdir -p %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}
|
||||
install -Dm644 *.json %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/
|
||||
install -Dm644 *.js %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/
|
||||
install -Dm644 *.css %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/
|
||||
mkdir -p %{buildroot}%{_gnomeextensionsdir}
|
||||
install -Dm644 *.json %{buildroot}%{_gnomeextensionsdir}/
|
||||
install -Dm644 *.js %{buildroot}%{_gnomeextensionsdir}/
|
||||
install -Dm644 *.css %{buildroot}%{_gnomeextensionsdir}/
|
||||
install -Dm644 schemas/*.gschema.xml -t %{buildroot}%{_datadir}/glib-2.0/schemas/
|
||||
|
||||
%post
|
||||
@@ -47,7 +47,7 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas/ &> /dev/null || :
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_datadir}/gnome-shell/extensions/%{uuid}
|
||||
%{_gnomeextensionsdir}
|
||||
%{_datadir}/glib-2.0/schemas/*.gschema.xml
|
||||
|
||||
%changelog
|
||||
|
||||
+4
-4
@@ -2,7 +2,7 @@
|
||||
|
||||
Name: gnome-shell-extension-vicinae
|
||||
Version: 1.5.3
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
License: MIT
|
||||
URL: https://github.com/dagimg-dot/vicinae-gnome-extension
|
||||
Source: %{url}/archive/refs/tags/v%{version}.tar.gz
|
||||
@@ -28,13 +28,13 @@ window management APIs, and paste-to-active-window capabilities.
|
||||
%{__bun} i && %{__bun} run build
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}
|
||||
cp -a src/ %{buildroot}%{_datadir}/gnome-shell/extensions/%{uuid}/
|
||||
mkdir -p %{buildroot}%{_gnomeextensionsdir}
|
||||
cp -a src/ %{buildroot}%{_gnomeextensionsdir}/
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md DEVELOPMENT.md
|
||||
%{_datadir}/gnome-shell/extensions/%{uuid}/
|
||||
%{_gnomeextensionsdir}/
|
||||
|
||||
%changelog
|
||||
* Sat Dec 27 2025 metcya <metcya@gmail.com> - 1.5.3-1
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-system-settings
|
||||
%global commit c8d52bcf0c6cbd783e03460527bb20c1e9fa7f91
|
||||
%global commit e366b02a5395e5e284eb6b207b9782b0c8f54426
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-system-settings
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: mangowc
|
||||
Version: 0.12.3
|
||||
Version: 0.12.4
|
||||
Release: 1%?dist
|
||||
Summary: wayland compositor base wlroots and scenefx (dwm but wayland)
|
||||
License: GPL-3.0
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "android-studio.spec"
|
||||
}
|
||||
|
||||
@@ -1,16 +1,32 @@
|
||||
%undefine __brp_add_determinism
|
||||
# disable debuginfo subpackage
|
||||
%global debug_package %{nil}
|
||||
# Disable build-id symlinks to avoid conflicts
|
||||
%global _build_id_links none
|
||||
# don't strip bundled binaries because pycharm checks length (!!!) of binary fsnotif
|
||||
# and if you strip debug stuff from it, it will complain
|
||||
%global __strip /bin/true
|
||||
# dont repack jars
|
||||
%global __jar_repack %{nil}
|
||||
# disable rpath checks
|
||||
%define __brp_check_rpaths %{nil}
|
||||
|
||||
%define __requires_exclude_from ^/usr/libexec/android-studio/.*$
|
||||
%define __provides_exclude_from ^/usr/libexec/android-studio/.*|libedit\\so.*$
|
||||
%global __requires_exclude ^libaaudio\\.so.*|^libandroid\\.so.*|^libmediandk\\.so.*|^liblog\\.so.*|^libc\\.so.*|^libm\\.so.*|^libdl\\.so.*|^libcrypt\\.so.*|^libstdc\\+\\+\\.so.*|^libncursesw\\.so.*|^libtinfo\\.so.*|^libnsl\\.so.*|^libpanelw\\.so.*$
|
||||
|
||||
Name: android-studio
|
||||
Version: 2025.2.2.8
|
||||
Version: 2025.3.1.8
|
||||
Release: 1%?dist
|
||||
Summary: Official IDE for Android development
|
||||
License: Apache-2.0
|
||||
Packager: like-engels <higashikataengels@icloud.com>
|
||||
Packager: veuxit <erroor234@gmail.com>, like-engels <higashikataengels@icloud.com>
|
||||
ExclusiveArch: x86_64
|
||||
URL: https://developer.android.com/studio
|
||||
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{version}-linux.tar.gz
|
||||
|
||||
%define suffixS panda1-patch1
|
||||
|
||||
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{suffixS}-linux.tar.gz
|
||||
|
||||
Requires: alsa-lib
|
||||
Requires: freetype
|
||||
@@ -20,11 +36,13 @@ Requires: libXtst
|
||||
Requires: glibc
|
||||
Requires: libsecret
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
|
||||
%description
|
||||
Android Studio is the official IDE for Android development, and includes everything you need to build Android apps.
|
||||
|
||||
%prep
|
||||
%setup -q -n android-studio
|
||||
%autosetup -n android-studio
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
||||
@@ -37,7 +55,10 @@ ln -s %{_libexecdir}/%{name}/bin/studio %{buildroot}%{_bindir}/%{name}
|
||||
mkdir -p %{buildroot}%{_licensedir}/%{name}
|
||||
install -Dm644 LICENSE.txt %{buildroot}%{_licensedir}/%{name}/LICENSE.txt
|
||||
|
||||
install -Dm644 bin/studio.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
|
||||
install -d %{buildroot}%{_datadir}/pixmaps
|
||||
install -m 0644 -p bin/studio.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
|
||||
install -d %{buildroot}%{_datadir}/icons/hicolor/scalable/apps
|
||||
install -m 0644 -p bin/studio.svg %{buildroot}%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
|
||||
|
||||
mkdir -p %{buildroot}%{_datadir}/applications
|
||||
cat > %{buildroot}%{_datadir}/applications/%{name}.desktop << 'EOF'
|
||||
@@ -45,9 +66,9 @@ cat > %{buildroot}%{_datadir}/applications/%{name}.desktop << 'EOF'
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Android Studio
|
||||
Exec=android-studio %f
|
||||
Exec=android-studio
|
||||
Icon=android-studio
|
||||
Comment=The official Android IDE
|
||||
Comment=Official IDE for Android development
|
||||
Categories=Development;IDE;
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
@@ -55,12 +76,17 @@ StartupWMClass=jetbrains-studio
|
||||
MimeType=application/x-extension-iml;
|
||||
EOF
|
||||
|
||||
%check
|
||||
%desktop_file_validate %{buildroot}%{_datadir}/applications/%{name}.desktop
|
||||
|
||||
%files
|
||||
%license %{_licensedir}/%{name}/LICENSE.txt
|
||||
%{_libexecdir}/%{name}
|
||||
%{_bindir}/%{name}
|
||||
%{_datadir}/pixmaps/%{name}.png
|
||||
%{_datadir}/pixmaps/android-studio.png
|
||||
%{_datadir}/icons/hicolor/scalable/apps/android-studio.svg
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
||||
* Fri Feb 20 2026 veuxit <erroor234@gmail.com> - 2025.3.1.8
|
||||
- Package update to 2025.3.1.8 panda1-patch1
|
||||
@@ -1 +1,10 @@
|
||||
rpm.version(find(`https://redirector.gvt1.com/edgedl/android/studio/ide-zips/([\d.]+)/android-studio-[\d.]+-linux.tar.gz`, get("https://developer.android.com/studio"), 1));
|
||||
let html = get("https://developer.android.com/studio");
|
||||
let pattern = `ide-zips/([^/]+)/android-studio-(.*?)-linux\.tar\.gz`;
|
||||
let nofilter = find(pattern, html, 0);
|
||||
let version = find(pattern, html, 1);
|
||||
let suffixS = find(pattern, html, 2);
|
||||
print(nofilter);
|
||||
print(version);
|
||||
print(suffixS);
|
||||
rpm.version(version);
|
||||
rpm.define("suffixS", suffixS);
|
||||
@@ -3,8 +3,8 @@
|
||||
%bcond test 0
|
||||
|
||||
Name: nodejs-%{npm_name}
|
||||
Version: 10.2.0
|
||||
Release: 3%{?dist}
|
||||
Version: 10.4.0
|
||||
Release: 1%?dist
|
||||
Summary: Backport GitHub commits
|
||||
SourceLicense: Apache-2.0
|
||||
License: 0BSD AND Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND ISC AND MIT AND (MIT OR CC0-1.0) AND (WTFPL OR ISC)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global crate deno
|
||||
|
||||
Name: rust-deno
|
||||
Version: 2.6.10
|
||||
Version: 2.7.1
|
||||
Release: 1%?dist
|
||||
Summary: Deno executable
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ and lets you use any cloud, kubernetes or just localhost docker.}
|
||||
loadtest/README.md
|
||||
|
||||
Name: devpod
|
||||
Release: 2%?dist
|
||||
Release: 3%?dist
|
||||
Summary: Spin up dev environments in any infra
|
||||
Provides: golang-github-loft-sh-devpod
|
||||
BuildRequires: anda-srpm-macros mold
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 5db9f03f6282141f084a8a4c8c9cb3d752b0ae9e
|
||||
%global commit 74ba971ebaca7e5ce20b1e30ee916a8f0704bd8d
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global fulldate 2026-02-20
|
||||
%global fulldate 2026-02-26
|
||||
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
||||
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
||||
%global ver 1.3.0
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 57725ca98210db244ff0a17f5ba08f3dd8116340
|
||||
%global commit 2ec2b4c600a43a3127d3924a0dc66f29e44ac60f
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260221
|
||||
%global ver 0.226.0
|
||||
%global commit_date 20260226
|
||||
%global ver 0.227.0
|
||||
|
||||
%bcond_with check
|
||||
%bcond_with debug_no_build
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
%global ver 0.225.6-pre
|
||||
%global ver 0.226.0-pre
|
||||
# Exclude input files from mangling
|
||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
%global rustflags_debuginfo 0
|
||||
|
||||
Name: zed
|
||||
Version: 0.224.11
|
||||
Version: 0.225.9
|
||||
Release: 1%?dist
|
||||
Summary: Zed is a high-performance, multiplayer code editor
|
||||
SourceLicense: AGPL-3.0-only AND Apache-2.0 AND GPL-3.0-or-later
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global crate chess-tui
|
||||
|
||||
Name: rust-chess-tui
|
||||
Version: 2.4.0
|
||||
Version: 2.5.0
|
||||
Release: 1%?dist
|
||||
Summary: Rusty chess game in your terminal 🦀
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "gmodpatchtool.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
%global _description %{expand:
|
||||
Automatically patches Garry's Mod's internal Chromium Embedded Framework to:
|
||||
|
||||
- Bring CEF up to date
|
||||
- Fix GMod missing menu/launch issues on macOS and Linux
|
||||
- Enable Proprietary Video/Audio codec, like H.264 (MP4) and AAC, support
|
||||
- Enable Widevine support (but no VMP)
|
||||
- Enable Software WebGL
|
||||
- Enable partial GPU acceleration}
|
||||
%global git_name GModPatchTool
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: gmodpatchtool
|
||||
Version: 20251102
|
||||
Release: 1%{?dist}
|
||||
SourceLicense: GPL-3.0-only
|
||||
License: ((MIT OR Apache-2.0) AND Unicode-3.0) AND (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 AND ISC) AND (Apache-2.0 AND MIT) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR GPL-2.0-only) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-2-Clause AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-3-Clause AND (BSD-3-Clause AND MIT) AND (BSD-3-Clause OR MIT) AND (BSD-3-Clause OR MIT OR Apache-2.0) AND BSL-1.0 AND CC0-1.0 AND (CC0-1.0 OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception) AND (CC0-1.0 OR MIT-0 OR Apache-2.0) AND GPL-3.0-only AND ISC AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR CC0-1.0) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Zlib OR Apache-2.0) AND MPL-2.0 AND Unicode-3.0 AND (Unlicense OR MIT) AND Zlib AND (Zlib OR Apache-2.0 OR MIT) AND bzip2-1.0.6
|
||||
Summary: Automatic Patching/Updating of GMod CEF. Fixes macOS/Linux launch issues.
|
||||
URL: https://solsticegamestudios.com/fixmedia
|
||||
Source0: https://github.com/solsticegamestudios/%{git_name}/archive/refs/tags/%{version}.tar.gz
|
||||
BuildRequires: anda-srpm-macros
|
||||
BuildRequires: cargo-rpm-macros
|
||||
BuildRequires: git-lfs
|
||||
BuildRequires: mold
|
||||
Provides: %{git_name}
|
||||
Packager: Gilver E. <roachy@fyralabs.com>
|
||||
|
||||
%description %_description
|
||||
|
||||
%prep
|
||||
%git_clone https://github.com/solsticegamestudios/%{git_name}.git %{version}
|
||||
git-lfs checkout
|
||||
%cargo_prep_online
|
||||
|
||||
%build
|
||||
%cargo_build
|
||||
|
||||
%install
|
||||
find target/rpm \
|
||||
-maxdepth 1 -type f -executable ! -name '*.so' \
|
||||
-exec install -Dm755 -t %{buildroot}%{_bindir} {} +
|
||||
%cargo_license_summary_online
|
||||
%{cargo_license_online} > LICENSE.dependencies
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license LICENSE.txt
|
||||
%license LICENSE.dependencies
|
||||
%{_bindir}/%{name}
|
||||
|
||||
%changelog
|
||||
* Tue Feb 24 2026 Gilver E. <roachy@fyralabs.com>
|
||||
- Initial package
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(gh_rawfile("solsticegamestudios/GModPatchTool", "master", "version.txt"));
|
||||
@@ -1,7 +1,7 @@
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
|
||||
Name: inputplumber
|
||||
Version: 0.74.2
|
||||
Version: 0.75.0
|
||||
Release: 1%?dist
|
||||
Summary: Open source input router and remapper daemon for Linux
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
%global name_pretty %{quote:Prism Launcher (Nightly)}
|
||||
%global appid org.prismlauncher.PrismLauncher-nightly
|
||||
|
||||
%global commit eac55d849c7ab44a3310a9c5c822a850331c3160
|
||||
%global commit 83e0b939380afbd3af8649752984582dd78135e3
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global commit_date 20260220
|
||||
%global commit_date 20260226
|
||||
%global snapshot_info %{commit_date}.%{shortcommit}
|
||||
|
||||
# Change this variables if you want to use custom keys
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
# GLIBCXX_ASSERTIONS is known to break RPCS3
|
||||
%global build_cflags %(echo "%{__build_flags_lang_c}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags}
|
||||
%global build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags}
|
||||
%global commit 6bfb33279f6989f3ff9ea2dc40ef45d6aeb57ef8
|
||||
%global ver 0.0.39-18811
|
||||
%global commit 41e036473a898c46147f868dba5534666b9bd36f
|
||||
%global ver 0.0.39-18847
|
||||
|
||||
Name: rpcs3
|
||||
Version: %(echo %{ver} | sed 's/-/^/g')
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define debug_package %{nil}
|
||||
|
||||
Name: dart
|
||||
Version: 3.11.0
|
||||
Version: 3.11.1
|
||||
Release: 1%?dist
|
||||
Summary: The Dart Language
|
||||
License: BSD-3-Clause
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
|
||||
%global commit 15c6249f2c541d3d8fe5dbcd7a655a1b424420fa
|
||||
%global commit a3157537e17173f36e7d7eefd500bdee14db5568
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 2.3.1
|
||||
%global commit_date 20260221
|
||||
%global commit_date 20260226
|
||||
%global debug_package %nil
|
||||
|
||||
Name: nim-nightly
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: nim
|
||||
Version: 2.2.6
|
||||
Version: 2.2.8
|
||||
Release: 1%?dist
|
||||
Summary: Imperative, multi-paradigm, compiled programming language
|
||||
License: MIT and BSD
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc xet client tech, used in huggingface_hub.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 1.2.0
|
||||
Version: 1.3.1
|
||||
Release: 1%?dist
|
||||
Summary: xet client tech, used in huggingface_hub
|
||||
License: Apache-2.0
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%bcond test 0
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 3.0.1
|
||||
Version: 3.0.2
|
||||
Release: 1%?dist
|
||||
Summary: Material You color generation algorithms in pure python!
|
||||
License: MIT
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc Send usage data from your Python code to PostHog.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 7.9.3
|
||||
Version: 7.9.4
|
||||
Release: 1%?dist
|
||||
Summary: Send usage data from your Python code to PostHog
|
||||
License: MIT
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "proxy-tools.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
%global pypi_name proxy_tools
|
||||
%global _desc Simple (hopefuly useful) Proxy (as in the GoF design pattern) implementation for Python.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 0.1.0
|
||||
Release: 1%?dist
|
||||
Summary: Simple (hopefuly useful) Proxy (as in the GoF design pattern) implementation for Python
|
||||
License: BSD-2-clause
|
||||
URL: https://github.com/jtushman/proxy_tools
|
||||
Source0: %{pypi_source}
|
||||
Source1: https://github.com/jtushman/proxy_tools/blob/master/LICENSE.txt
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-pip
|
||||
BuildRequires: python3-setuptools
|
||||
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
%description
|
||||
%_desc
|
||||
|
||||
%package -n python3-%{pypi_name}
|
||||
Summary: %{summary}
|
||||
Provides: %{pypi_name}
|
||||
%{?python_provide:%python_provide python3-%{pypi_name}}
|
||||
|
||||
%description -n python3-%{pypi_name}
|
||||
%_desc
|
||||
|
||||
%prep
|
||||
%autosetup -n %{pypi_name}-%{version}
|
||||
cp %{S:1} .
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%pyproject_save_files %{pypi_name}
|
||||
|
||||
%files -n python3-%{pypi_name} -f %{pyproject_files}
|
||||
%doc README.rst
|
||||
%license LICENSE.txt
|
||||
|
||||
%changelog
|
||||
* Wed Feb 25 2026 Owen Zimmerman <owen@fyralabs.com>
|
||||
- Initial commit
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(pypi("proxy_tools"));
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 9e6b58fad088ca14346e6f7ffd80b9d84b83aed1
|
||||
%global commit_date 20260221
|
||||
%global commit d6cdd5ec6d787ec491d73616fb8062e207cb5b33
|
||||
%global commit_date 20260226
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global pypi_name types-colorama
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: fresh
|
||||
Version: 0.2.5
|
||||
Version: 0.2.9
|
||||
Release: 1%?dist
|
||||
Summary: Text editor for your terminal: easy, powerful and fast
|
||||
URL: https://getfresh.dev
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global crate gitoxide
|
||||
|
||||
Name: rust-gitoxide
|
||||
Version: 0.50.0
|
||||
Version: 0.51.0
|
||||
Release: 1%?dist
|
||||
Summary: Command-line application for interacting with git repositories
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global altdiffname cococonscious-%{crate}
|
||||
|
||||
Name: rust-koji
|
||||
Version: 3.3.1
|
||||
Version: 3.4.0
|
||||
Release: 1%?dist
|
||||
Summary: Interactive CLI for creating conventional commits
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global crate usage-cli
|
||||
|
||||
Name: rust-usage-cli
|
||||
Version: 2.18.0
|
||||
Version: 2.18.1
|
||||
Release: 1%?dist
|
||||
Summary: CLI for working with usage-based CLIs
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: youki
|
||||
Version: 0.5.7
|
||||
Version: 0.6.0
|
||||
Release: 1%?dist
|
||||
Summary: A container runtime written in Rust
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
%global crate zoi-rs
|
||||
%global crate_version 1.4.0
|
||||
%global crate_version 1.5.0
|
||||
|
||||
Name: rust-zoi-rs
|
||||
Version: %(echo %crate_version | sed 's/-/~/g')
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
%global real_name vala-lint
|
||||
|
||||
%global commit a1d1a7bc0f740920e592fd788a836c402fd9825c
|
||||
%global commit 28dbf44dd2c5ec2fc7273982d35ff8cb0ef46283
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global commit_date 20250804
|
||||
%global commit_date 20260224
|
||||
%global snapshot_info %{commit_date}.%{shortcommit}
|
||||
|
||||
Name: vala-lint-nightly
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
version=0.16.0-dev.2637+6a9510c0e
|
||||
version=0.16.0-dev.2653+784e89fd4
|
||||
|
||||
mirrors=()
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
%define llvm_compat 20
|
||||
%endif
|
||||
%global llvm_version 20.0.0
|
||||
%global ver 0.16.0-dev.2637+6a9510c0e
|
||||
%global ver 0.16.0-dev.2653+784e89fd4
|
||||
%bcond bootstrap 1
|
||||
%bcond docs %{without bootstrap}
|
||||
%bcond test 1
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
%global zig_cache_dir %{builddir}/zig-cache
|
||||
|
||||
Name: zig-master
|
||||
Version: 0.16.0~dev.2637+6a9510c0e
|
||||
Version: 0.16.0~dev.2653+784e89fd4
|
||||
Release: 2%?dist
|
||||
Summary: Master builds of the Zig language
|
||||
License: MIT AND NCSA AND LGPL-2.1-or-later AND LGPL-2.1-or-later WITH GCC-exception-2.0 AND GPL-2.0-or-later AND GPL-2.0-or-later WITH GCC-exception-2.0 AND BSD-3-Clause AND Inner-Net-2.0 AND ISC AND LicenseRef-Fedora-Public-Domain AND GFDL-1.1-or-later AND ZPL-2.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Generated by rust2rpm 27
|
||||
%bcond check 0
|
||||
%bcond rust_nightly 1
|
||||
%bcond rust_nightly 0
|
||||
%global debug_package %{nil}
|
||||
%if %{with rust_nightly}
|
||||
%define __cargo /usr/bin/env CARGO_HOME=.cargo RUSTC_BOOTSTRAP=1 RUSTFLAGS='%{build_rustflags}' $HOME/.cargo/bin/cargo
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global cuda_version 12
|
||||
|
||||
Name: cuda-cudnn
|
||||
Version: 9.19.0.56
|
||||
Version: 9.19.1.2
|
||||
Release: 1%?dist
|
||||
Epoch: 1
|
||||
Summary: NVIDIA CUDA Deep Neural Network library (cuDNN)
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
pbcli is a command line client which allows to upload and download pastes from privatebin directly from the command line.}
|
||||
|
||||
Name: pbcli
|
||||
Version: 2.8.0
|
||||
Release: 4%{?dist}
|
||||
Version: 2.9.0
|
||||
Release: 1%?dist
|
||||
Summary: A PrivateBin commandline upload and download utility
|
||||
SourceLicense: Unlicense OR MIT
|
||||
License: ((Apache-2.0 OR MIT) AND BSD-3-Clause) AND (0BSD OR MIT OR Apache-2.0) AND (Apache-2.0 AND ISC) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND Apache-2.0 AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-3-Clause AND ISC AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND MIT AND MPL-2.0 AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: zapret
|
||||
Version: 72.9
|
||||
Version: 72.10
|
||||
Release: 1%?dist
|
||||
Summary: A multi-platform Deep Packet Inspection (DPI) bypass tool
|
||||
License: MIT
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global pname carla
|
||||
%global ver 2.5.10
|
||||
%global commit 011867b6bcd592a510b4ec157c032fcdac23d6ef
|
||||
%global commit 294a80145e39c0755ab9073d90fd8b9524fbfc84
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260104
|
||||
%global commit_date 20260222
|
||||
|
||||
Name: Carla-nightly
|
||||
Version: %(echo %ver | tr -d 'v')^%commit_date.git~%shortcommit
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit e92914a06c68daba5b7f69ea2755adf051c30d60
|
||||
%global commit fc1984160d1e5973e249e54d57e9f8605e7c4a99
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
%global commit_date 20260219
|
||||
%global commit_date 20260223
|
||||
|
||||
Name: vgmstream
|
||||
Version: 0~%{commit_date}git.%shortcommit
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 6c3206b7a7f5241fbd12bfe30cc78a4593e582cd
|
||||
%global commit_date 20260203
|
||||
%global commit 0159ab1086c70ea3090f74bfd64936c6c2769742
|
||||
%global commit_date 20260225
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
# Exclude input files from mangling
|
||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
%define _unpackaged_files_terminate_build 0
|
||||
|
||||
Name: asusctl
|
||||
Version: 6.3.2
|
||||
Release: 2%?dist
|
||||
Version: 6.3.3
|
||||
Release: 1%?dist
|
||||
Epoch: 1
|
||||
Summary: A control daemon, CLI tools, and a collection of crates for interacting with ASUS ROG laptops
|
||||
URL: https://gitlab.com/asus-linux/asusctl
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: limine
|
||||
Version: 10.7.0
|
||||
Version: 10.8.2
|
||||
Release: 1%?dist
|
||||
Summary: Modern, advanced, portable, multiprotocol bootloader
|
||||
License: BSD-2-Clause
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: compat-nvidia-repo-580
|
||||
Version: 580.126.18
|
||||
Version: 580.126.20
|
||||
Epoch: 3
|
||||
Release: 1%?dist
|
||||
Summary: Compatibility package required by official CUDA packages
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
%endif
|
||||
|
||||
Name: %{real_name}-580
|
||||
Version: 580.126.18
|
||||
Version: 580.126.20
|
||||
Release: 1%?dist
|
||||
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
|
||||
Epoch: 3
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global __brp_strip %{nil}
|
||||
|
||||
Name: nvidia-580-kmod-common
|
||||
Version: 580.126.18
|
||||
Version: 580.126.20
|
||||
Release: 1%?dist
|
||||
Summary: Common file for NVIDIA's proprietary driver kernel modules
|
||||
Epoch: 3
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global real_name nvidia-modprobe
|
||||
|
||||
Name: %{real_name}-580
|
||||
Version: 580.126.18
|
||||
Version: 580.126.20
|
||||
Release: 1%?dist
|
||||
Summary: NVIDIA kernel module loader
|
||||
Epoch: 3
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global real_name nvidia-persistenced
|
||||
|
||||
Name: %{real_name}-580
|
||||
Version: 580.126.18
|
||||
Version: 580.126.20
|
||||
Release: 1%?dist
|
||||
Summary: A daemon to maintain persistent software state in the NVIDIA driver
|
||||
Epoch: 3
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global real_name nvidia-settings
|
||||
|
||||
Name: %{real_name}-580
|
||||
Version: 580.126.18
|
||||
Version: 580.126.20
|
||||
Release: 1%?dist
|
||||
Summary: Configure the NVIDIA graphics driver
|
||||
Epoch: 3
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global real_name nvidia-xconfig
|
||||
|
||||
Name: %{real_name}-580
|
||||
Version: 580.126.18
|
||||
Version: 580.126.20
|
||||
Release: 1%?dist
|
||||
Summary: NVIDIA X configuration file editor
|
||||
Epoch: 3
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 383c3fe7552112abcd4bc62904bdefbc3e55e25e
|
||||
%global commit df28455f68f2282b2244b51e575ca1a2828523b7
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260221
|
||||
%global commit_date 20260222
|
||||
%global ver 0.6.6.2
|
||||
|
||||
# We aren't using Mono but RPM expected Mono
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: pixi
|
||||
Version: 0.63.2
|
||||
Version: 0.64.0
|
||||
Release: 1%?dist
|
||||
Summary: A cross-platform, multi-language package manager
|
||||
License: BSD-3-Clause
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
[Desktop Entry]
|
||||
Name=Acme
|
||||
Type=Application
|
||||
Exec=acme
|
||||
GenericName=Editor
|
||||
Comment='Editor from Plan 9'
|
||||
Categories=Development
|
||||
@@ -0,0 +1,9 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "plan9port.spec"
|
||||
}
|
||||
labels {
|
||||
nightly = 1
|
||||
mock = 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,986 @@
|
||||
%global commit cb7001c8d27f22f7229be302f53012bb1db52418
|
||||
%global commit_date 20260208
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%define _unpackaged_files_terminate_build 0
|
||||
|
||||
Name: plan9port
|
||||
Version: 0~%{commit_date}git.%{shortcommit}
|
||||
Release: 1%?dist
|
||||
Summary: Plan 9 from User Space
|
||||
URL: https://9fans.github.io/plan9port/
|
||||
Source0: https://github.com/9fans/plan9port/archive/%commit/armillary-%commit.tar.gz
|
||||
Source1: acme.desktop
|
||||
License: MIT AND bzip2-1.0.6
|
||||
BuildRequires: gcc
|
||||
BuildRequires: perl
|
||||
BuildRequires: libXt-devel
|
||||
BuildRequires: fontconfig-devel
|
||||
BuildRequires: desktop-file-utils
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
AutoReq: 0
|
||||
Conflicts: rubygem-bundler
|
||||
Conflicts: stack
|
||||
Conflicts: fossil
|
||||
|
||||
%description
|
||||
A port of many Plan 9 libraries and programs to Unix.
|
||||
|
||||
%package devel
|
||||
%pkg_devel_files
|
||||
|
||||
%prep
|
||||
%autosetup -n %{name}-%{commit}
|
||||
|
||||
%build
|
||||
./INSTALL
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{_bindir}/
|
||||
mkdir -p %{buildroot}%{_mandir}/
|
||||
install -Dm755 bin/9 %{buildroot}%{_bindir}/9
|
||||
install -Dm755 bin/9.rc %{buildroot}%{_bindir}/9.rc
|
||||
install -Dm755 bin/9ar %{buildroot}%{_bindir}/9ar
|
||||
install -Dm755 bin/9c %{buildroot}%{_bindir}/9c
|
||||
install -Dm755 bin/9fs %{buildroot}%{_bindir}/9fs
|
||||
install -Dm755 bin/9l %{buildroot}%{_bindir}/9l
|
||||
install -Dm755 bin/B %{buildroot}%{_bindir}/B
|
||||
install -Dm755 bin/E %{buildroot}%{_bindir}/E
|
||||
install -Dm755 bin/Getdir %{buildroot}%{_bindir}/Getdir
|
||||
install -Dm755 bin/adict %{buildroot}%{_bindir}/adict
|
||||
install -Dm755 bin/awd %{buildroot}%{_bindir}/awd
|
||||
install -Dm755 bin/bundle %{buildroot}%{_bindir}/bundle
|
||||
install -Dm755 bin/disk/mkext %{buildroot}%{_bindir}/disk/mkext
|
||||
install -Dm755 bin/disk/mkfs %{buildroot}%{_bindir}/disk/9mkfs
|
||||
install -Dm755 bin/doctype %{buildroot}%{_bindir}/doctype
|
||||
install -Dm755 bin/fossil/fossil %{buildroot}%{_bindir}/fossil/fossil
|
||||
install -Dm755 bin/fossil/flchk %{buildroot}%{_bindir}/fossil/flchk
|
||||
install -Dm755 bin/fossil/flfmt %{buildroot}%{_bindir}/fossil/flfmt
|
||||
install -Dm755 bin/fossil/conf %{buildroot}%{_bindir}/fossil/conf
|
||||
install -Dm755 bin/fossil/last %{buildroot}%{_bindir}/fossil/9last
|
||||
install -Dm755 bin/fossil/view %{buildroot}%{_bindir}/fossil/9view
|
||||
install -Dm755 bin/fs/tarfs %{buildroot}%{_bindir}/fs/tarfs
|
||||
install -Dm755 bin/fs/tpfs %{buildroot}%{_bindir}/fs/tpfs
|
||||
install -Dm755 bin/fs/v6fs %{buildroot}%{_bindir}/fs/v6fs
|
||||
install -Dm755 bin/fs/32vfs %{buildroot}%{_bindir}/fs/32vfs
|
||||
install -Dm755 bin/fs/cpiofs %{buildroot}%{_bindir}/fs/cpiofs
|
||||
install -Dm755 bin/fs/tapfs %{buildroot}%{_bindir}/fs/tapfs
|
||||
install -Dm755 bin/fs/v10fs %{buildroot}%{_bindir}/fs/v10fs
|
||||
install -Dm755 bin/fs/zipfs %{buildroot}%{_bindir}/fs/zipfs
|
||||
install -Dm755 bin/g %{buildroot}%{_bindir}/g
|
||||
install -Dm755 bin/ipso %{buildroot}%{_bindir}/ipso
|
||||
install -Dm755 bin/kill %{buildroot}%{_bindir}/9kill
|
||||
install -Dm755 bin/label %{buildroot}%{_bindir}/label
|
||||
install -Dm755 bin/lc %{buildroot}%{_bindir}/lc
|
||||
install -Dm755 bin/lookman %{buildroot}%{_bindir}/lookman
|
||||
install -Dm755 bin/macedit %{buildroot}%{_bindir}/macedit
|
||||
install -Dm755 bin/man %{buildroot}%{_bindir}/9man
|
||||
install -Dm755 bin/mount %{buildroot}%{_bindir}/9mount
|
||||
install -Dm755 bin/nobs %{buildroot}%{_bindir}/nobs
|
||||
install -Dm755 bin/nroff %{buildroot}%{_bindir}/9nroff
|
||||
install -Dm755 bin/osxvers %{buildroot}%{_bindir}/osxvers
|
||||
install -Dm755 bin/ps %{buildroot}%{_bindir}/9ps
|
||||
install -Dm755 bin/psfonts %{buildroot}%{_bindir}/psfonts
|
||||
install -Dm755 bin/psu %{buildroot}%{_bindir}/psu
|
||||
install -Dm755 bin/psv %{buildroot}%{_bindir}/psv
|
||||
install -Dm755 bin/quote1 %{buildroot}%{_bindir}/quote1
|
||||
install -Dm755 bin/quote2 %{buildroot}%{_bindir}/quote2
|
||||
install -Dm755 bin/samsave %{buildroot}%{_bindir}/samsave
|
||||
install -Dm755 bin/sig %{buildroot}%{_bindir}/sig
|
||||
install -Dm755 bin/slay %{buildroot}%{_bindir}/slay
|
||||
install -Dm755 bin/soelim %{buildroot}%{_bindir}/9soelim
|
||||
install -Dm755 bin/spell %{buildroot}%{_bindir}/spell
|
||||
install -Dm755 bin/src %{buildroot}%{_bindir}/src
|
||||
install -Dm755 bin/ssam %{buildroot}%{_bindir}/ssam
|
||||
install -Dm755 bin/stack %{buildroot}%{_bindir}/stack
|
||||
install -Dm755 bin/start %{buildroot}%{_bindir}/start
|
||||
install -Dm755 bin/stop %{buildroot}%{_bindir}/stop
|
||||
install -Dm755 bin/tref %{buildroot}%{_bindir}/tref
|
||||
install -Dm755 bin/troff2png %{buildroot}%{_bindir}/troff2png
|
||||
install -Dm755 bin/u %{buildroot}%{_bindir}/u
|
||||
install -Dm755 bin/u.rc %{buildroot}%{_bindir}/u.rc
|
||||
install -Dm755 bin/unmount %{buildroot}%{_bindir}/unmount
|
||||
install -Dm755 bin/upas/isspam %{buildroot}%{_bindir}/upas/isspam
|
||||
install -Dm755 bin/upas/msgcat %{buildroot}%{_bindir}/upas/9msgcat
|
||||
install -Dm755 bin/upas/spam %{buildroot}%{_bindir}/upas/spam
|
||||
install -Dm755 bin/upas/spambox %{buildroot}%{_bindir}/upas/spambox
|
||||
install -Dm755 bin/upas/unspam %{buildroot}%{_bindir}/upas/unspam
|
||||
install -Dm755 bin/upas/unspambox %{buildroot}%{_bindir}/upas/unspambox
|
||||
install -Dm755 bin/venti/copy %{buildroot}%{_bindir}/venti/copy
|
||||
install -Dm755 bin/venti/read %{buildroot}%{_bindir}/venti/9read
|
||||
install -Dm755 bin/venti/ro %{buildroot}%{_bindir}/venti/ro
|
||||
install -Dm755 bin/venti/sync %{buildroot}%{_bindir}/venti/9sync
|
||||
install -Dm755 bin/venti/write %{buildroot}%{_bindir}/venti/9write
|
||||
install -Dm755 bin/venti/dump %{buildroot}%{_bindir}/venti/dump
|
||||
install -Dm755 bin/venti/venti %{buildroot}%{_bindir}/venti/venti
|
||||
install -Dm755 bin/venti/buildindex %{buildroot}%{_bindir}/venti/buildindex
|
||||
install -Dm755 bin/venti/checkarenas %{buildroot}%{_bindir}/venti/checkarenas
|
||||
install -Dm755 bin/venti/checkindex %{buildroot}%{_bindir}/venti/checkindex
|
||||
install -Dm755 bin/venti/clumpstats %{buildroot}%{_bindir}/venti/clumpstats
|
||||
install -Dm755 bin/venti/conf %{buildroot}%{_bindir}/venti/conf
|
||||
install -Dm755 bin/venti/findscore %{buildroot}%{_bindir}/venti/findscore
|
||||
install -Dm755 bin/venti/fixarenas %{buildroot}%{_bindir}/venti/fixarenas
|
||||
install -Dm755 bin/venti/fmtarenas %{buildroot}%{_bindir}/venti/fmtarenas
|
||||
install -Dm755 bin/venti/fmtbloom %{buildroot}%{_bindir}/venti/fmtbloom
|
||||
install -Dm755 bin/venti/fmtindex %{buildroot}%{_bindir}/venti/fmtindex
|
||||
install -Dm755 bin/venti/fmtisect %{buildroot}%{_bindir}/venti/fmtisect
|
||||
install -Dm755 bin/venti/mirrorarenas %{buildroot}%{_bindir}/venti/mirrorarenas
|
||||
install -Dm755 bin/venti/printarena %{buildroot}%{_bindir}/venti/printarena
|
||||
install -Dm755 bin/venti/printarenapart %{buildroot}%{_bindir}/venti/printarenapart
|
||||
install -Dm755 bin/venti/rdarena %{buildroot}%{_bindir}/venti/rdarena
|
||||
install -Dm755 bin/venti/syncindex %{buildroot}%{_bindir}/venti/syncindex
|
||||
install -Dm755 bin/venti/verifyarena %{buildroot}%{_bindir}/venti/verifyarena
|
||||
install -Dm755 bin/venti/wrarena %{buildroot}%{_bindir}/venti/wrarena
|
||||
install -Dm755 bin/vmount %{buildroot}%{_bindir}/vmount
|
||||
install -Dm755 bin/vwhois %{buildroot}%{_bindir}/vwhois
|
||||
install -Dm755 bin/web %{buildroot}%{_bindir}/web
|
||||
install -Dm755 bin/wintext %{buildroot}%{_bindir}/wintext
|
||||
install -Dm755 bin/wmail %{buildroot}%{_bindir}/wmail
|
||||
install -Dm755 bin/yesterday %{buildroot}%{_bindir}/yesterday
|
||||
install -Dm755 bin/yacc %{buildroot}%{_bindir}/yacc
|
||||
install -Dm755 bin/import %{buildroot}%{_bindir}/9import
|
||||
install -Dm755 bin/9p %{buildroot}%{_bindir}/9p
|
||||
install -Dm755 bin/9pserve %{buildroot}%{_bindir}/9pserve
|
||||
install -Dm755 bin/acmeevent %{buildroot}%{_bindir}/acmeevent
|
||||
install -Dm755 bin/ascii %{buildroot}%{_bindir}/ascii
|
||||
install -Dm755 bin/auxclog %{buildroot}%{_bindir}/auxclog
|
||||
install -Dm755 bin/basename %{buildroot}%{_bindir}/9basename
|
||||
install -Dm755 bin/bc %{buildroot}%{_bindir}/9bc
|
||||
install -Dm755 bin/cal %{buildroot}%{_bindir}/9cal
|
||||
install -Dm755 bin/calendar %{buildroot}%{_bindir}/calendar
|
||||
install -Dm755 bin/cat %{buildroot}%{_bindir}/9cat
|
||||
install -Dm755 bin/cleanname %{buildroot}%{_bindir}/cleanname
|
||||
install -Dm755 bin/cmp %{buildroot}%{_bindir}/9cmp
|
||||
install -Dm755 bin/col %{buildroot}%{_bindir}/9col
|
||||
install -Dm755 bin/comm %{buildroot}%{_bindir}/9comm
|
||||
install -Dm755 bin/core %{buildroot}%{_bindir}/core
|
||||
install -Dm755 bin/date %{buildroot}%{_bindir}/9date
|
||||
install -Dm755 bin/dc %{buildroot}%{_bindir}/9dc
|
||||
install -Dm755 bin/dd %{buildroot}%{_bindir}/9dd
|
||||
install -Dm755 bin/delatex %{buildroot}%{_bindir}/delatex
|
||||
install -Dm755 bin/deroff %{buildroot}%{_bindir}/deroff
|
||||
install -Dm755 bin/dial %{buildroot}%{_bindir}/dial
|
||||
install -Dm755 bin/du %{buildroot}%{_bindir}/9du
|
||||
install -Dm755 bin/echo %{buildroot}%{_bindir}/9echo
|
||||
install -Dm755 bin/ed %{buildroot}%{_bindir}/9ed
|
||||
install -Dm755 bin/factor %{buildroot}%{_bindir}/9factor
|
||||
install -Dm755 bin/file %{buildroot}%{_bindir}/9file
|
||||
install -Dm755 bin/fmt %{buildroot}%{_bindir}/9fmt
|
||||
install -Dm755 bin/fortune %{buildroot}%{_bindir}/fortune
|
||||
install -Dm755 bin/freq %{buildroot}%{_bindir}/freq
|
||||
install -Dm755 bin/fsize %{buildroot}%{_bindir}/fsize
|
||||
install -Dm755 bin/getflags %{buildroot}%{_bindir}/getflags
|
||||
install -Dm755 bin/hget %{buildroot}%{_bindir}/hget
|
||||
install -Dm755 bin/hist %{buildroot}%{_bindir}/hist
|
||||
install -Dm755 bin/idiff %{buildroot}%{_bindir}/idiff
|
||||
install -Dm755 bin/import %{buildroot}%{_bindir}/9import
|
||||
install -Dm755 bin/join %{buildroot}%{_bindir}/9join
|
||||
install -Dm755 bin/listen1 %{buildroot}%{_bindir}/listen1
|
||||
install -Dm755 bin/look %{buildroot}%{_bindir}/9look
|
||||
install -Dm755 bin/ls %{buildroot}%{_bindir}/9ls
|
||||
install -Dm755 bin/md5sum %{buildroot}%{_bindir}/9md5sum
|
||||
install -Dm755 bin/mkdir %{buildroot}%{_bindir}/9mkdir
|
||||
install -Dm755 bin/mntgen %{buildroot}%{_bindir}/mntgen
|
||||
install -Dm755 bin/mtime %{buildroot}%{_bindir}/mtime
|
||||
install -Dm755 bin/namespace %{buildroot}%{_bindir}/namespace
|
||||
install -Dm755 bin/netkey %{buildroot}%{_bindir}/netkey
|
||||
install -Dm755 bin/news %{buildroot}%{_bindir}/news
|
||||
install -Dm755 bin/pbd %{buildroot}%{_bindir}/pbd
|
||||
install -Dm755 bin/p %{buildroot}%{_bindir}/p
|
||||
install -Dm755 bin/pr %{buildroot}%{_bindir}/9pr
|
||||
install -Dm755 bin/primes %{buildroot}%{_bindir}/primes
|
||||
install -Dm755 bin/ramfs %{buildroot}%{_bindir}/ramfs
|
||||
install -Dm755 bin/read %{buildroot}%{_bindir}/read
|
||||
install -Dm755 bin/readcons %{buildroot}%{_bindir}/readcons
|
||||
install -Dm755 bin/resample %{buildroot}%{_bindir}/resample
|
||||
install -Dm755 bin/rm %{buildroot}%{_bindir}/9rm
|
||||
install -Dm755 bin/sed %{buildroot}%{_bindir}/9sed
|
||||
install -Dm755 bin/seq %{buildroot}%{_bindir}/9seq
|
||||
install -Dm755 bin/sftpcache %{buildroot}%{_bindir}/sftpcache
|
||||
install -Dm755 bin/sha1sum %{buildroot}%{_bindir}/9sha1sum
|
||||
install -Dm755 bin/sleep %{buildroot}%{_bindir}/9sleep
|
||||
install -Dm755 bin/sort %{buildroot}%{_bindir}/9sort
|
||||
install -Dm755 bin/split %{buildroot}%{_bindir}/9split
|
||||
install -Dm755 bin/srv %{buildroot}%{_bindir}/srv
|
||||
install -Dm755 bin/strings %{buildroot}%{_bindir}/9strings
|
||||
install -Dm755 bin/sum %{buildroot}%{_bindir}/9sum
|
||||
install -Dm755 bin/tail %{buildroot}%{_bindir}/9tail
|
||||
install -Dm755 bin/tar %{buildroot}%{_bindir}/9tar
|
||||
install -Dm755 bin/tee %{buildroot}%{_bindir}/9tee
|
||||
install -Dm755 bin/test %{buildroot}%{_bindir}/9test
|
||||
install -Dm755 bin/time %{buildroot}%{_bindir}/9time
|
||||
install -Dm755 bin/touch %{buildroot}%{_bindir}/9touch
|
||||
install -Dm755 bin/tr %{buildroot}%{_bindir}/9tr
|
||||
install -Dm755 bin/unicode %{buildroot}%{_bindir}/unicode
|
||||
install -Dm755 bin/uniq %{buildroot}%{_bindir}/9uniq
|
||||
install -Dm755 bin/units %{buildroot}%{_bindir}/units
|
||||
install -Dm755 bin/unutf %{buildroot}%{_bindir}/unutf
|
||||
install -Dm755 bin/usage %{buildroot}%{_bindir}/usage
|
||||
install -Dm755 bin/wc %{buildroot}%{_bindir}/9wc
|
||||
install -Dm755 bin/xd %{buildroot}%{_bindir}/xd
|
||||
install -Dm755 bin/zerotrunc %{buildroot}%{_bindir}/zerotrunc
|
||||
install -Dm755 bin/lex %{buildroot}%{_bindir}/9lex
|
||||
install -Dm755 bin/dump9660 %{buildroot}%{_bindir}/dump9660
|
||||
install -Dm755 bin/mk9660 %{buildroot}%{_bindir}/mk9660
|
||||
install -Dm755 bin/9660srv %{buildroot}%{_bindir}/9660srv
|
||||
install -Dm755 bin/9pfuse %{buildroot}%{_bindir}/9pfuse
|
||||
install -Dm755 bin/9term %{buildroot}%{_bindir}/9term
|
||||
install -Dm755 bin/win %{buildroot}%{_bindir}/win
|
||||
install -Dm755 bin/acid %{buildroot}%{_bindir}/acid
|
||||
install -Dm755 bin/acidtypes %{buildroot}%{_bindir}/acidtypes
|
||||
install -Dm755 bin/acme %{buildroot}%{_bindir}/acme
|
||||
install -Dm755 bin/Mail %{buildroot}%{_bindir}/Mail
|
||||
install -Dm755 bin/astro %{buildroot}%{_bindir}/astro
|
||||
install -Dm755 bin/asn12dsa %{buildroot}%{_bindir}/asn12dsa
|
||||
install -Dm755 bin/asn12rsa %{buildroot}%{_bindir}/asn12rsa
|
||||
install -Dm755 bin/dsagen %{buildroot}%{_bindir}/dsagen
|
||||
install -Dm755 bin/dsasign %{buildroot}%{_bindir}/dsasign
|
||||
install -Dm755 bin/dsa2pub %{buildroot}%{_bindir}/dsa2pub
|
||||
install -Dm755 bin/dsa2ssh %{buildroot}%{_bindir}/dsa2ssh
|
||||
install -Dm755 bin/passwd %{buildroot}%{_bindir}/9passwd
|
||||
install -Dm755 bin/pemdecode %{buildroot}%{_bindir}/pemdecode
|
||||
install -Dm755 bin/pemencode %{buildroot}%{_bindir}/pemencode
|
||||
install -Dm755 bin/rsagen %{buildroot}%{_bindir}/rsagen
|
||||
install -Dm755 bin/rsafill %{buildroot}%{_bindir}/rsafill
|
||||
install -Dm755 bin/rsa2csr %{buildroot}%{_bindir}/rsa2csr
|
||||
install -Dm755 bin/rsa2pub %{buildroot}%{_bindir}/rsa2pub
|
||||
install -Dm755 bin/rsa2ssh %{buildroot}%{_bindir}/rsa2ssh
|
||||
install -Dm755 bin/rsa2x509 %{buildroot}%{_bindir}/rsa2x509
|
||||
install -Dm755 bin/ssh-agent %{buildroot}%{_bindir}/9ssh-agent
|
||||
install -Dm755 bin/factotum %{buildroot}%{_bindir}/factotum
|
||||
install -Dm755 bin/aescbc %{buildroot}%{_bindir}/aescbc
|
||||
install -Dm755 bin/secstore %{buildroot}%{_bindir}/secstore
|
||||
install -Dm755 bin/secstored %{buildroot}%{_bindir}/secstored
|
||||
install -Dm755 bin/secuser %{buildroot}%{_bindir}/secuser
|
||||
install -Dm755 bin/auxstats %{buildroot}%{_bindir}/auxstats
|
||||
install -Dm755 bin/awk %{buildroot}%{_bindir}/9awk
|
||||
install -Dm755 bin/bzip2 %{buildroot}%{_bindir}/9bzip2
|
||||
install -Dm755 bin/bunzip2 %{buildroot}%{_bindir}/9bunzip2
|
||||
install -Dm755 bin/cb %{buildroot}%{_bindir}/cb
|
||||
install -Dm755 bin/compress %{buildroot}%{_bindir}/compress
|
||||
install -Dm755 bin/zcat %{buildroot}%{_bindir}/9zcat
|
||||
install -Dm755 bin/uncompress %{buildroot}%{_bindir}/uncompress
|
||||
install -Dm755 bin/db %{buildroot}%{_bindir}/db
|
||||
install -Dm755 bin/mklatinkbd %{buildroot}%{_bindir}/mklatinkbd
|
||||
install -Dm755 bin/devdraw %{buildroot}%{_bindir}/devdraw
|
||||
install -Dm755 bin/dict %{buildroot}%{_bindir}/dict
|
||||
install -Dm755 bin/diff %{buildroot}%{_bindir}/9diff
|
||||
install -Dm755 bin/clock %{buildroot}%{_bindir}/9clock
|
||||
install -Dm755 bin/cmapcube %{buildroot}%{_bindir}/cmapcube
|
||||
install -Dm755 bin/colors %{buildroot}%{_bindir}/colors
|
||||
install -Dm755 bin/crop %{buildroot}%{_bindir}/crop
|
||||
install -Dm755 bin/gview %{buildroot}%{_bindir}/9gview
|
||||
install -Dm755 bin/iconv %{buildroot}%{_bindir}/9iconv
|
||||
install -Dm755 bin/img %{buildroot}%{_bindir}/img
|
||||
install -Dm755 bin/mc %{buildroot}%{_bindir}/mc
|
||||
install -Dm755 bin/stats %{buildroot}%{_bindir}/stats
|
||||
install -Dm755 bin/statusbar %{buildroot}%{_bindir}/statusbar
|
||||
install -Dm755 bin/tcolors %{buildroot}%{_bindir}/tcolors
|
||||
install -Dm755 bin/tweak %{buildroot}%{_bindir}/tweak
|
||||
install -Dm755 bin/eqn %{buildroot}%{_bindir}/9eqn
|
||||
install -Dm755 bin/fontsrv %{buildroot}%{_bindir}/fontsrv
|
||||
install -Dm755 bin/grap %{buildroot}%{_bindir}/grap
|
||||
install -Dm755 bin/graph %{buildroot}%{_bindir}/graph
|
||||
install -Dm755 bin/grep %{buildroot}%{_bindir}/9grep
|
||||
install -Dm755 bin/gzip %{buildroot}%{_bindir}/9gzip
|
||||
install -Dm755 bin/gunzip %{buildroot}%{_bindir}/9gunzip
|
||||
install -Dm755 bin/zip %{buildroot}%{_bindir}/9zip
|
||||
install -Dm755 bin/unzip %{buildroot}%{_bindir}/9unzip
|
||||
install -Dm755 bin/hoc %{buildroot}%{_bindir}/hoc
|
||||
install -Dm755 bin/htmlfmt %{buildroot}%{_bindir}/htmlfmt
|
||||
install -Dm755 bin/htmlroff %{buildroot}%{_bindir}/htmlroff
|
||||
install -Dm755 bin/jpg %{buildroot}%{_bindir}/jpg
|
||||
install -Dm755 bin/gif %{buildroot}%{_bindir}/gif
|
||||
install -Dm755 bin/togif %{buildroot}%{_bindir}/togif
|
||||
install -Dm755 bin/ppm %{buildroot}%{_bindir}/ppm
|
||||
install -Dm755 bin/toppm %{buildroot}%{_bindir}/toppm
|
||||
install -Dm755 bin/png %{buildroot}%{_bindir}/png
|
||||
install -Dm755 bin/topng %{buildroot}%{_bindir}/topng
|
||||
install -Dm755 bin/yuv %{buildroot}%{_bindir}/yuv
|
||||
install -Dm755 bin/ico %{buildroot}%{_bindir}/ico
|
||||
install -Dm755 bin/toico %{buildroot}%{_bindir}/toico
|
||||
install -Dm755 bin/bmp %{buildroot}%{_bindir}/bmp
|
||||
install -Dm755 bin/mapd %{buildroot}%{_bindir}/mapd
|
||||
install -Dm755 bin/mk %{buildroot}%{_bindir}/mk
|
||||
install -Dm755 bin/dns %{buildroot}%{_bindir}/dns
|
||||
install -Dm755 bin/dnsquery %{buildroot}%{_bindir}/dnsquery
|
||||
install -Dm755 bin/dnsdebug %{buildroot}%{_bindir}/dnsdebug
|
||||
install -Dm755 bin/dnstcp %{buildroot}%{_bindir}/dnstcp
|
||||
install -Dm755 bin/ndbmkdb %{buildroot}%{_bindir}/ndbmkdb
|
||||
install -Dm755 bin/ndbquery %{buildroot}%{_bindir}/ndbquery
|
||||
install -Dm755 bin/ndbmkhash %{buildroot}%{_bindir}/ndbmkhash
|
||||
install -Dm755 bin/ndbmkhosts %{buildroot}%{_bindir}/ndbmkhosts
|
||||
install -Dm755 bin/ndbipquery %{buildroot}%{_bindir}/ndbipquery
|
||||
install -Dm755 bin/Netfiles %{buildroot}%{_bindir}/Netfiles
|
||||
install -Dm755 bin/netfileget %{buildroot}%{_bindir}/netfileget
|
||||
install -Dm755 bin/netfileput %{buildroot}%{_bindir}/netfileput
|
||||
install -Dm755 bin/netfilestat %{buildroot}%{_bindir}/netfilestat
|
||||
install -Dm755 bin/netfilelib.rc %{buildroot}%{_bindir}/netfilelib.rc
|
||||
install -Dm755 bin/page %{buildroot}%{_bindir}/page
|
||||
install -Dm755 bin/paint %{buildroot}%{_bindir}/paint
|
||||
install -Dm755 bin/pic %{buildroot}%{_bindir}/9pic
|
||||
install -Dm755 bin/plot %{buildroot}%{_bindir}/plot
|
||||
install -Dm755 bin/plumber %{buildroot}%{_bindir}/plumber
|
||||
install -Dm755 bin/plumb %{buildroot}%{_bindir}/plumb
|
||||
install -Dm755 bin/tr2post %{buildroot}%{_bindir}/tr2post
|
||||
install -Dm755 bin/psdownload %{buildroot}%{_bindir}/psdownload
|
||||
install -Dm755 bin/proof %{buildroot}%{_bindir}/proof
|
||||
install -Dm755 bin/rc %{buildroot}%{_bindir}/rc
|
||||
install -Dm755 bin/rio %{buildroot}%{_bindir}/rio
|
||||
install -Dm755 bin/winwatch %{buildroot}%{_bindir}/winwatch
|
||||
install -Dm755 bin/xshove %{buildroot}%{_bindir}/xshove
|
||||
install -Dm755 bin/sam %{buildroot}%{_bindir}/sam
|
||||
install -Dm755 bin/samterm %{buildroot}%{_bindir}/samterm
|
||||
install -Dm755 bin/scat %{buildroot}%{_bindir}/scat
|
||||
install -Dm755 bin/sprog %{buildroot}%{_bindir}/sprog
|
||||
install -Dm755 bin/svgpic %{buildroot}%{_bindir}/svgpic
|
||||
install -Dm755 bin/tbl %{buildroot}%{_bindir}/9tbl
|
||||
install -Dm755 bin/tcs %{buildroot}%{_bindir}/tcs
|
||||
install -Dm755 bin/tpic %{buildroot}%{_bindir}/tpic
|
||||
install -Dm755 bin/troff %{buildroot}%{_bindir}/9troff
|
||||
install -Dm755 bin/troff2html %{buildroot}%{_bindir}/troff2html
|
||||
install -Dm755 bin/vac %{buildroot}%{_bindir}/vac
|
||||
install -Dm755 bin/vacfs %{buildroot}%{_bindir}/vacfs
|
||||
install -Dm755 bin/unvac %{buildroot}%{_bindir}/unvac
|
||||
install -Dm755 bin/disknfs %{buildroot}%{_bindir}/disknfs
|
||||
install -Dm755 bin/vbackup %{buildroot}%{_bindir}/vbackup
|
||||
install -Dm755 bin/vcat %{buildroot}%{_bindir}/vcat
|
||||
install -Dm755 bin/vmount0 %{buildroot}%{_bindir}/vmount0
|
||||
install -Dm755 bin/vnfs %{buildroot}%{_bindir}/vnfs
|
||||
cp -r man/* %{buildroot}%{_mandir}/
|
||||
install -Dm644 include/*.h -t %{buildroot}%{_includedir}/
|
||||
install -Dm644 lib/*.a -t %{buildroot}%{_libdir}/
|
||||
%desktop_file_install %{SOURCE1}
|
||||
|
||||
%check
|
||||
%desktop_file_validate %{buildroot}%{_appsdir}/acme.desktop
|
||||
|
||||
%files
|
||||
%doc README.md CONTRIBUTING.md CONTRIBUTORS
|
||||
%license LICENSE src/cmd/bzip2/LICENSE
|
||||
%{_appsdir}/acme.desktop
|
||||
%{_bindir}/9
|
||||
%{_bindir}/9.rc
|
||||
%{_bindir}/9ar
|
||||
%{_bindir}/9c
|
||||
%{_bindir}/9fs
|
||||
%{_bindir}/9l
|
||||
%{_bindir}/B
|
||||
%{_bindir}/E
|
||||
%{_bindir}/Getdir
|
||||
%{_bindir}/adict
|
||||
%{_bindir}/awd
|
||||
%{_bindir}/bundle
|
||||
%{_bindir}/disk/mkext
|
||||
%{_bindir}/disk/9mkfs
|
||||
%{_bindir}/doctype
|
||||
%{_bindir}/fossil/fossil
|
||||
%{_bindir}/fossil/flchk
|
||||
%{_bindir}/fossil/flfmt
|
||||
%{_bindir}/fossil/conf
|
||||
%{_bindir}/fossil/9last
|
||||
%{_bindir}/fossil/9view
|
||||
%{_bindir}/fs/tarfs
|
||||
%{_bindir}/fs/tpfs
|
||||
%{_bindir}/fs/v6fs
|
||||
%{_bindir}/fs/32vfs
|
||||
%{_bindir}/fs/cpiofs
|
||||
%{_bindir}/fs/tapfs
|
||||
%{_bindir}/fs/v10fs
|
||||
%{_bindir}/fs/zipfs
|
||||
%{_bindir}/g
|
||||
%{_bindir}/ipso
|
||||
%{_bindir}/9kill
|
||||
%{_bindir}/label
|
||||
%{_bindir}/lc
|
||||
%{_bindir}/lookman
|
||||
%{_bindir}/macedit
|
||||
%{_bindir}/9man
|
||||
%{_bindir}/9mount
|
||||
%{_bindir}/nobs
|
||||
%{_bindir}/9nroff
|
||||
%{_bindir}/osxvers
|
||||
%{_bindir}/9ps
|
||||
%{_bindir}/psfonts
|
||||
%{_bindir}/psu
|
||||
%{_bindir}/psv
|
||||
%{_bindir}/quote1
|
||||
%{_bindir}/quote2
|
||||
%{_bindir}/samsave
|
||||
%{_bindir}/sig
|
||||
%{_bindir}/slay
|
||||
%{_bindir}/9soelim
|
||||
%{_bindir}/spell
|
||||
%{_bindir}/src
|
||||
%{_bindir}/ssam
|
||||
%{_bindir}/stack
|
||||
%{_bindir}/start
|
||||
%{_bindir}/stop
|
||||
%{_bindir}/tref
|
||||
%{_bindir}/troff2png
|
||||
%{_bindir}/u
|
||||
%{_bindir}/u.rc
|
||||
%{_bindir}/unmount
|
||||
%{_bindir}/upas/isspam
|
||||
%{_bindir}/upas/9msgcat
|
||||
%{_bindir}/upas/spam
|
||||
%{_bindir}/upas/spambox
|
||||
%{_bindir}/upas/unspam
|
||||
%{_bindir}/upas/unspambox
|
||||
%{_bindir}/venti/copy
|
||||
%{_bindir}/venti/9read
|
||||
%{_bindir}/venti/ro
|
||||
%{_bindir}/venti/9sync
|
||||
%{_bindir}/venti/9write
|
||||
%{_bindir}/venti/dump
|
||||
%{_bindir}/venti/venti
|
||||
%{_bindir}/venti/buildindex
|
||||
%{_bindir}/venti/checkarenas
|
||||
%{_bindir}/venti/checkindex
|
||||
%{_bindir}/venti/clumpstats
|
||||
%{_bindir}/venti/conf
|
||||
%{_bindir}/venti/findscore
|
||||
%{_bindir}/venti/fixarenas
|
||||
%{_bindir}/venti/fmtarenas
|
||||
%{_bindir}/venti/fmtbloom
|
||||
%{_bindir}/venti/fmtindex
|
||||
%{_bindir}/venti/fmtisect
|
||||
%{_bindir}/venti/mirrorarenas
|
||||
%{_bindir}/venti/printarena
|
||||
%{_bindir}/venti/printarenapart
|
||||
%{_bindir}/venti/rdarena
|
||||
%{_bindir}/venti/syncindex
|
||||
%{_bindir}/venti/verifyarena
|
||||
%{_bindir}/venti/wrarena
|
||||
%{_bindir}/vmount
|
||||
%{_bindir}/vwhois
|
||||
%{_bindir}/web
|
||||
%{_bindir}/wintext
|
||||
%{_bindir}/wmail
|
||||
%{_bindir}/yesterday
|
||||
%{_bindir}/yacc
|
||||
%{_bindir}/9import
|
||||
%{_bindir}/9p
|
||||
%{_bindir}/9pserve
|
||||
%{_bindir}/acmeevent
|
||||
%{_bindir}/ascii
|
||||
%{_bindir}/auxclog
|
||||
%{_bindir}/9basename
|
||||
%{_bindir}/9bc
|
||||
%{_bindir}/9cal
|
||||
%{_bindir}/calendar
|
||||
%{_bindir}/9cat
|
||||
%{_bindir}/cleanname
|
||||
%{_bindir}/9cmp
|
||||
%{_bindir}/9col
|
||||
%{_bindir}/9comm
|
||||
%{_bindir}/core
|
||||
%{_bindir}/9date
|
||||
%{_bindir}/9dc
|
||||
%{_bindir}/9dd
|
||||
%{_bindir}/delatex
|
||||
%{_bindir}/deroff
|
||||
%{_bindir}/dial
|
||||
%{_bindir}/9du
|
||||
%{_bindir}/9echo
|
||||
%{_bindir}/9ed
|
||||
%{_bindir}/9factor
|
||||
%{_bindir}/9file
|
||||
%{_bindir}/9fmt
|
||||
%{_bindir}/fortune
|
||||
%{_bindir}/freq
|
||||
%{_bindir}/fsize
|
||||
%{_bindir}/getflags
|
||||
%{_bindir}/hget
|
||||
%{_bindir}/hist
|
||||
%{_bindir}/idiff
|
||||
%{_bindir}/9import
|
||||
%{_bindir}/9join
|
||||
%{_bindir}/listen1
|
||||
%{_bindir}/9look
|
||||
%{_bindir}/9ls
|
||||
%{_bindir}/9md5sum
|
||||
%{_bindir}/9mkdir
|
||||
%{_bindir}/mntgen
|
||||
%{_bindir}/mtime
|
||||
%{_bindir}/namespace
|
||||
%{_bindir}/netkey
|
||||
%{_bindir}/news
|
||||
%{_bindir}/pbd
|
||||
%{_bindir}/p
|
||||
%{_bindir}/9pr
|
||||
%{_bindir}/primes
|
||||
%{_bindir}/ramfs
|
||||
%{_bindir}/read
|
||||
%{_bindir}/readcons
|
||||
%{_bindir}/resample
|
||||
%{_bindir}/9rm
|
||||
%{_bindir}/9sed
|
||||
%{_bindir}/9seq
|
||||
%{_bindir}/sftpcache
|
||||
%{_bindir}/9sha1sum
|
||||
%{_bindir}/9sleep
|
||||
%{_bindir}/9sort
|
||||
%{_bindir}/9split
|
||||
%{_bindir}/srv
|
||||
%{_bindir}/9strings
|
||||
%{_bindir}/9sum
|
||||
%{_bindir}/9tail
|
||||
%{_bindir}/9tar
|
||||
%{_bindir}/9tee
|
||||
%{_bindir}/9test
|
||||
%{_bindir}/9time
|
||||
%{_bindir}/9touch
|
||||
%{_bindir}/9tr
|
||||
%{_bindir}/unicode
|
||||
%{_bindir}/9uniq
|
||||
%{_bindir}/units
|
||||
%{_bindir}/unutf
|
||||
%{_bindir}/usage
|
||||
%{_bindir}/9wc
|
||||
%{_bindir}/xd
|
||||
%{_bindir}/zerotrunc
|
||||
%{_bindir}/9lex
|
||||
%{_bindir}/dump9660
|
||||
%{_bindir}/mk9660
|
||||
%{_bindir}/9660srv
|
||||
%{_bindir}/9pfuse
|
||||
%{_bindir}/9term
|
||||
%{_bindir}/win
|
||||
%{_bindir}/acid
|
||||
%{_bindir}/acidtypes
|
||||
%{_bindir}/acme
|
||||
%{_bindir}/Mail
|
||||
%{_bindir}/astro
|
||||
%{_bindir}/asn12dsa
|
||||
%{_bindir}/asn12rsa
|
||||
%{_bindir}/dsagen
|
||||
%{_bindir}/dsasign
|
||||
%{_bindir}/dsa2pub
|
||||
%{_bindir}/dsa2ssh
|
||||
%{_bindir}/9passwd
|
||||
%{_bindir}/pemdecode
|
||||
%{_bindir}/pemencode
|
||||
%{_bindir}/rsagen
|
||||
%{_bindir}/rsafill
|
||||
%{_bindir}/rsa2csr
|
||||
%{_bindir}/rsa2pub
|
||||
%{_bindir}/rsa2ssh
|
||||
%{_bindir}/rsa2x509
|
||||
%{_bindir}/9ssh-agent
|
||||
%{_bindir}/factotum
|
||||
%{_bindir}/aescbc
|
||||
%{_bindir}/secstore
|
||||
%{_bindir}/secstored
|
||||
%{_bindir}/secuser
|
||||
%{_bindir}/auxstats
|
||||
%{_bindir}/9awk
|
||||
%{_bindir}/9bzip2
|
||||
%{_bindir}/9bunzip2
|
||||
%{_bindir}/cb
|
||||
%{_bindir}/compress
|
||||
%{_bindir}/9zcat
|
||||
%{_bindir}/uncompress
|
||||
%{_bindir}/db
|
||||
%{_bindir}/mklatinkbd
|
||||
%{_bindir}/devdraw
|
||||
%{_bindir}/dict
|
||||
%{_bindir}/9diff
|
||||
%{_bindir}/9clock
|
||||
%{_bindir}/cmapcube
|
||||
%{_bindir}/colors
|
||||
%{_bindir}/crop
|
||||
%{_bindir}/9gview
|
||||
%{_bindir}/9iconv
|
||||
%{_bindir}/img
|
||||
%{_bindir}/mc
|
||||
%{_bindir}/stats
|
||||
%{_bindir}/statusbar
|
||||
%{_bindir}/tcolors
|
||||
%{_bindir}/tweak
|
||||
%{_bindir}/9eqn
|
||||
%{_bindir}/fontsrv
|
||||
%{_bindir}/grap
|
||||
%{_bindir}/graph
|
||||
%{_bindir}/9grep
|
||||
%{_bindir}/9gzip
|
||||
%{_bindir}/9gunzip
|
||||
%{_bindir}/9zip
|
||||
%{_bindir}/9unzip
|
||||
%{_bindir}/hoc
|
||||
%{_bindir}/htmlfmt
|
||||
%{_bindir}/htmlroff
|
||||
%{_bindir}/jpg
|
||||
%{_bindir}/gif
|
||||
%{_bindir}/togif
|
||||
%{_bindir}/ppm
|
||||
%{_bindir}/toppm
|
||||
%{_bindir}/png
|
||||
%{_bindir}/topng
|
||||
%{_bindir}/yuv
|
||||
%{_bindir}/ico
|
||||
%{_bindir}/toico
|
||||
%{_bindir}/bmp
|
||||
%{_bindir}/mapd
|
||||
%{_bindir}/mk
|
||||
%{_bindir}/dns
|
||||
%{_bindir}/dnsquery
|
||||
%{_bindir}/dnsdebug
|
||||
%{_bindir}/dnstcp
|
||||
%{_bindir}/ndbmkdb
|
||||
%{_bindir}/ndbquery
|
||||
%{_bindir}/ndbmkhash
|
||||
%{_bindir}/ndbmkhosts
|
||||
%{_bindir}/ndbipquery
|
||||
%{_bindir}/Netfiles
|
||||
%{_bindir}/netfileget
|
||||
%{_bindir}/netfileput
|
||||
%{_bindir}/netfilestat
|
||||
%{_bindir}/netfilelib.rc
|
||||
%{_bindir}/page
|
||||
%{_bindir}/paint
|
||||
%{_bindir}/9pic
|
||||
%{_bindir}/plot
|
||||
%{_bindir}/plumber
|
||||
%{_bindir}/plumb
|
||||
%{_bindir}/tr2post
|
||||
%{_bindir}/psdownload
|
||||
%{_bindir}/proof
|
||||
%{_bindir}/rc
|
||||
%{_bindir}/rio
|
||||
%{_bindir}/winwatch
|
||||
%{_bindir}/xshove
|
||||
%{_bindir}/sam
|
||||
%{_bindir}/samterm
|
||||
%{_bindir}/scat
|
||||
%{_bindir}/sprog
|
||||
%{_bindir}/svgpic
|
||||
%{_bindir}/9tbl
|
||||
%{_bindir}/tcs
|
||||
%{_bindir}/tpic
|
||||
%{_bindir}/9troff
|
||||
%{_bindir}/troff2html
|
||||
%{_bindir}/vac
|
||||
%{_bindir}/vacfs
|
||||
%{_bindir}/unvac
|
||||
%{_bindir}/disknfs
|
||||
%{_bindir}/vbackup
|
||||
%{_bindir}/vcat
|
||||
%{_bindir}/vmount0
|
||||
%{_bindir}/vnfs
|
||||
%{_mandir}/man1/0intro.1.*
|
||||
%{_mandir}/man1/9.1.*
|
||||
%{_mandir}/man1/9c.1.*
|
||||
%{_mandir}/man1/9p.1.*
|
||||
%{_mandir}/man1/9term.1.*
|
||||
%{_mandir}/man1/acid.1.*
|
||||
%{_mandir}/man1/acme.1.*
|
||||
%{_mandir}/man1/acmeevent.1.*
|
||||
%{_mandir}/man1/ascii.1.*
|
||||
%{_mandir}/man1/astro.1.*
|
||||
%{_mandir}/man1/awk.1.*
|
||||
%{_mandir}/man1/basename.1.*
|
||||
%{_mandir}/man1/bc.1.*
|
||||
%{_mandir}/man1/bundle.1.*
|
||||
%{_mandir}/man1/cal.1.*
|
||||
%{_mandir}/man1/calendar.1.*
|
||||
%{_mandir}/man1/cat.1.*
|
||||
%{_mandir}/man1/cleanname.1.*
|
||||
%{_mandir}/man1/clog.1.*
|
||||
%{_mandir}/man1/cmp.1.*
|
||||
%{_mandir}/man1/col.1.*
|
||||
%{_mandir}/man1/colors.1.*
|
||||
%{_mandir}/man1/comm.1.*
|
||||
%{_mandir}/man1/compress.1.*
|
||||
%{_mandir}/man1/core.1.*
|
||||
%{_mandir}/man1/crop.1.*
|
||||
%{_mandir}/man1/date.1.*
|
||||
%{_mandir}/man1/db.1.*
|
||||
%{_mandir}/man1/dc.1.*
|
||||
%{_mandir}/man1/dd.1.*
|
||||
%{_mandir}/man1/deroff.1.*
|
||||
%{_mandir}/man1/devdraw.1.*
|
||||
%{_mandir}/man1/dial.1.*
|
||||
%{_mandir}/man1/dict.1.*
|
||||
%{_mandir}/man1/diff.1.*
|
||||
%{_mandir}/man1/doctype.1.*
|
||||
%{_mandir}/man1/echo.1.*
|
||||
%{_mandir}/man1/ed.1.*
|
||||
%{_mandir}/man1/eqn.1.*
|
||||
%{_mandir}/man1/factor.1.*
|
||||
%{_mandir}/man1/fmt.1.*
|
||||
%{_mandir}/man1/fortune.1.*
|
||||
%{_mandir}/man1/freq.1.*
|
||||
%{_mandir}/man1/fsize.1.*
|
||||
%{_mandir}/man1/git.1.*
|
||||
%{_mandir}/man1/grap.1.*
|
||||
%{_mandir}/man1/graph.1.*
|
||||
%{_mandir}/man1/grep.1.*
|
||||
%{_mandir}/man1/gview.1.*
|
||||
%{_mandir}/man1/gzip.1.*
|
||||
%{_mandir}/man1/hget.1.*
|
||||
%{_mandir}/man1/hist.1.*
|
||||
%{_mandir}/man1/hoc.1.*
|
||||
%{_mandir}/man1/htmlroff.1.*
|
||||
%{_mandir}/man1/idiff.1.*
|
||||
%{_mandir}/man1/install.1.*
|
||||
%{_mandir}/man1/join.1.*
|
||||
%{_mandir}/man1/jpg.1.*
|
||||
%{_mandir}/man1/kill.1.*
|
||||
%{_mandir}/man1/label.1.*
|
||||
%{_mandir}/man1/lex.1.*
|
||||
%{_mandir}/man1/look.1.*
|
||||
%{_mandir}/man1/ls.1.*
|
||||
%{_mandir}/man1/man.1.*
|
||||
%{_mandir}/man1/map.1.*
|
||||
%{_mandir}/man1/mc.1.*
|
||||
%{_mandir}/man1/mk.1.*
|
||||
%{_mandir}/man1/mk9660.1.*
|
||||
%{_mandir}/man1/mkdir.1.*
|
||||
%{_mandir}/man1/mount.1.*
|
||||
%{_mandir}/man1/namespace.1.*
|
||||
%{_mandir}/man1/ndb.1.*
|
||||
%{_mandir}/man1/netfiles.1.*
|
||||
%{_mandir}/man1/news.1.*
|
||||
%{_mandir}/man1/p.1.*
|
||||
%{_mandir}/man1/page.1.*
|
||||
%{_mandir}/man1/paint.1.*
|
||||
%{_mandir}/man1/passwd.1.*
|
||||
%{_mandir}/man1/pem.1.*
|
||||
%{_mandir}/man1/pic.1.*
|
||||
%{_mandir}/man1/plot.1.*
|
||||
%{_mandir}/man1/plumb.1.*
|
||||
%{_mandir}/man1/pr.1.*
|
||||
%{_mandir}/man1/proof.1.*
|
||||
%{_mandir}/man1/ps.1.*
|
||||
%{_mandir}/man1/psfonts.1.*
|
||||
%{_mandir}/man1/pwd.1.*
|
||||
%{_mandir}/man1/rc.1.*
|
||||
%{_mandir}/man1/readcons.1.*
|
||||
%{_mandir}/man1/resample.1.*
|
||||
%{_mandir}/man1/rio.1.*
|
||||
%{_mandir}/man1/rm.1.*
|
||||
%{_mandir}/man1/rsa.1.*
|
||||
%{_mandir}/man1/sam.1.*
|
||||
%{_mandir}/man1/scat.1.*
|
||||
%{_mandir}/man1/secstore.1.*
|
||||
%{_mandir}/man1/secstored.1.*
|
||||
%{_mandir}/man1/sed.1.*
|
||||
%{_mandir}/man1/seq.1.*
|
||||
%{_mandir}/man1/sftpcache.1.*
|
||||
%{_mandir}/man1/sleep.1.*
|
||||
%{_mandir}/man1/snarfer.1.*
|
||||
%{_mandir}/man1/soelim.1.*
|
||||
%{_mandir}/man1/sort.1.*
|
||||
%{_mandir}/man1/spell.1.*
|
||||
%{_mandir}/man1/split.1.*
|
||||
%{_mandir}/man1/src.1.*
|
||||
%{_mandir}/man1/ssam.1.*
|
||||
%{_mandir}/man1/ssh-agent.1.*
|
||||
%{_mandir}/man1/stats.1.*
|
||||
%{_mandir}/man1/strings.1.*
|
||||
%{_mandir}/man1/sum.1.*
|
||||
%{_mandir}/man1/tail.1.*
|
||||
%{_mandir}/man1/tar.1.*
|
||||
%{_mandir}/man1/tbl.1.*
|
||||
%{_mandir}/man1/tcs.1.*
|
||||
%{_mandir}/man1/tee.1.*
|
||||
%{_mandir}/man1/test.1.*
|
||||
%{_mandir}/man1/time.1.*
|
||||
%{_mandir}/man1/touch.1.*
|
||||
%{_mandir}/man1/tr.1.*
|
||||
%{_mandir}/man1/tr2post.1.*
|
||||
%{_mandir}/man1/troff.1.*
|
||||
%{_mandir}/man1/troff2html.1.*
|
||||
%{_mandir}/man1/tweak.1.*
|
||||
%{_mandir}/man1/uniq.1.*
|
||||
%{_mandir}/man1/units.1.*
|
||||
%{_mandir}/man1/vac.1.*
|
||||
%{_mandir}/man1/venti.1.*
|
||||
%{_mandir}/man1/wc.1.*
|
||||
%{_mandir}/man1/web.1.*
|
||||
%{_mandir}/man1/wintext.1.*
|
||||
%{_mandir}/man1/winwatch.1.*
|
||||
%{_mandir}/man1/xd.1.*
|
||||
%{_mandir}/man1/yacc.1.*
|
||||
%{_mandir}/man1/yesterday.1.*
|
||||
%{_mandir}/man3/0intro.3.*
|
||||
%{_mandir}/man3/9p-cmdbuf.3.*
|
||||
%{_mandir}/man3/9p-fid.3.*
|
||||
%{_mandir}/man3/9p-file.3.*
|
||||
%{_mandir}/man3/9p-intmap.3.*
|
||||
%{_mandir}/man3/9p.3.*
|
||||
%{_mandir}/man3/9pclient.3.*
|
||||
%{_mandir}/man3/acme.3.*
|
||||
%{_mandir}/man3/addpt.3.*
|
||||
%{_mandir}/man3/aes.3.*
|
||||
%{_mandir}/man3/allocimage.3.*
|
||||
%{_mandir}/man3/arg.3.*
|
||||
%{_mandir}/man3/arith3.3.*
|
||||
%{_mandir}/man3/atof.3.*
|
||||
%{_mandir}/man3/auth.3.*
|
||||
%{_mandir}/man3/authsrv.3.*
|
||||
%{_mandir}/man3/avl.3.*
|
||||
%{_mandir}/man3/bin.3.*
|
||||
%{_mandir}/man3/bio.3.*
|
||||
%{_mandir}/man3/blowfish.3.*
|
||||
%{_mandir}/man3/cachechars.3.*
|
||||
%{_mandir}/man3/cleanname.3.*
|
||||
%{_mandir}/man3/color.3.*
|
||||
%{_mandir}/man3/complete.3.*
|
||||
%{_mandir}/man3/cputime.3.*
|
||||
%{_mandir}/man3/ctime.3.*
|
||||
%{_mandir}/man3/des.3.*
|
||||
%{_mandir}/man3/dial.3.*
|
||||
%{_mandir}/man3/dirread.3.*
|
||||
%{_mandir}/man3/draw.3.*
|
||||
%{_mandir}/man3/drawfcall.3.*
|
||||
%{_mandir}/man3/dsa.3.*
|
||||
%{_mandir}/man3/dup.3.*
|
||||
%{_mandir}/man3/elgamal.3.*
|
||||
%{_mandir}/man3/encode.3.*
|
||||
%{_mandir}/man3/encrypt.3.*
|
||||
%{_mandir}/man3/errstr.3.*
|
||||
%{_mandir}/man3/event.3.*
|
||||
%{_mandir}/man3/exec.3.*
|
||||
%{_mandir}/man3/exits.3.*
|
||||
%{_mandir}/man3/fcall.3.*
|
||||
%{_mandir}/man3/flate.3.*
|
||||
%{_mandir}/man3/fmtinstall.3.*
|
||||
%{_mandir}/man3/frame.3.*
|
||||
%{_mandir}/man3/genrandom.3.*
|
||||
%{_mandir}/man3/get9root.3.*
|
||||
%{_mandir}/man3/getcallerpc.3.*
|
||||
%{_mandir}/man3/getenv.3.*
|
||||
%{_mandir}/man3/getfields.3.*
|
||||
%{_mandir}/man3/getns.3.*
|
||||
%{_mandir}/man3/getsnarf.3.*
|
||||
%{_mandir}/man3/getuser.3.*
|
||||
%{_mandir}/man3/getwd.3.*
|
||||
%{_mandir}/man3/graphics.3.*
|
||||
%{_mandir}/man3/html.3.*
|
||||
%{_mandir}/man3/ioproc.3.*
|
||||
%{_mandir}/man3/ip.3.*
|
||||
%{_mandir}/man3/isalpharune.3.*
|
||||
%{_mandir}/man3/keyboard.3.*
|
||||
%{_mandir}/man3/lock.3.*
|
||||
%{_mandir}/man3/mach-cmd.3.*
|
||||
%{_mandir}/man3/mach-file.3.*
|
||||
%{_mandir}/man3/mach-map.3.*
|
||||
%{_mandir}/man3/mach-stack.3.*
|
||||
%{_mandir}/man3/mach-swap.3.*
|
||||
%{_mandir}/man3/mach-symbol.3.*
|
||||
%{_mandir}/man3/mach.3.*
|
||||
%{_mandir}/man3/malloc.3.*
|
||||
%{_mandir}/man3/matrix.3.*
|
||||
%{_mandir}/man3/memdraw.3.*
|
||||
%{_mandir}/man3/memlayer.3.*
|
||||
%{_mandir}/man3/memory.3.*
|
||||
%{_mandir}/man3/mouse.3.*
|
||||
%{_mandir}/man3/mousescrollsize.3.*
|
||||
%{_mandir}/man3/mp.3.*
|
||||
%{_mandir}/man3/muldiv.3.*
|
||||
%{_mandir}/man3/mux.3.*
|
||||
%{_mandir}/man3/nan.3.*
|
||||
%{_mandir}/man3/ndb.3.*
|
||||
%{_mandir}/man3/needstack.3.*
|
||||
%{_mandir}/man3/notify.3.*
|
||||
%{_mandir}/man3/open.3.*
|
||||
%{_mandir}/man3/opentemp.3.*
|
||||
%{_mandir}/man3/pipe.3.*
|
||||
%{_mandir}/man3/plumb.3.*
|
||||
%{_mandir}/man3/post9pservice.3.*
|
||||
%{_mandir}/man3/postnote.3.*
|
||||
%{_mandir}/man3/prime.3.*
|
||||
%{_mandir}/man3/print.3.*
|
||||
%{_mandir}/man3/proto.3.*
|
||||
%{_mandir}/man3/pushtls.3.*
|
||||
%{_mandir}/man3/qball.3.*
|
||||
%{_mandir}/man3/quaternion.3.*
|
||||
%{_mandir}/man3/quote.3.*
|
||||
%{_mandir}/man3/rand.3.*
|
||||
%{_mandir}/man3/rc4.3.*
|
||||
%{_mandir}/man3/read.3.*
|
||||
%{_mandir}/man3/readcolmap.3.*
|
||||
%{_mandir}/man3/readcons.3.*
|
||||
%{_mandir}/man3/regexp.3.*
|
||||
%{_mandir}/man3/rfork.3.*
|
||||
%{_mandir}/man3/rsa.3.*
|
||||
%{_mandir}/man3/rune.3.*
|
||||
%{_mandir}/man3/runestrcat.3.*
|
||||
%{_mandir}/man3/searchpath.3.*
|
||||
%{_mandir}/man3/sechash.3.*
|
||||
%{_mandir}/man3/seek.3.*
|
||||
%{_mandir}/man3/sendfd.3.*
|
||||
%{_mandir}/man3/setjmp.3.*
|
||||
%{_mandir}/man3/sleep.3.*
|
||||
%{_mandir}/man3/stat.3.*
|
||||
%{_mandir}/man3/strcat.3.*
|
||||
%{_mandir}/man3/string.3.*
|
||||
%{_mandir}/man3/stringsize.3.*
|
||||
%{_mandir}/man3/subfont.3.*
|
||||
%{_mandir}/man3/sysfatal.3.*
|
||||
%{_mandir}/man3/thread.3.*
|
||||
%{_mandir}/man3/time.3.*
|
||||
%{_mandir}/man3/udpread.3.*
|
||||
%{_mandir}/man3/venti-cache.3.*
|
||||
%{_mandir}/man3/venti-client.3.*
|
||||
%{_mandir}/man3/venti-conn.3.*
|
||||
%{_mandir}/man3/venti-fcall.3.*
|
||||
%{_mandir}/man3/venti-file.3.*
|
||||
%{_mandir}/man3/venti-log.3.*
|
||||
%{_mandir}/man3/venti-mem.3.*
|
||||
%{_mandir}/man3/venti-packet.3.*
|
||||
%{_mandir}/man3/venti-server.3.*
|
||||
%{_mandir}/man3/venti-zero.3.*
|
||||
%{_mandir}/man3/venti.3.*
|
||||
%{_mandir}/man3/wait.3.*
|
||||
%{_mandir}/man3/wctl.3.*
|
||||
%{_mandir}/man3/window.3.*
|
||||
%{_mandir}/man4/0intro.4.*
|
||||
%{_mandir}/man4/9import.4.*
|
||||
%{_mandir}/man4/9pfuse.4.*
|
||||
%{_mandir}/man4/9pserve.4.*
|
||||
%{_mandir}/man4/acme.4.*
|
||||
%{_mandir}/man4/factotum.4.*
|
||||
%{_mandir}/man4/fontsrv.4.*
|
||||
%{_mandir}/man4/fossil.4.*
|
||||
%{_mandir}/man4/import.4.*
|
||||
%{_mandir}/man4/mntgen.4.*
|
||||
%{_mandir}/man4/plumber.4.*
|
||||
%{_mandir}/man4/ramfs.4.*
|
||||
%{_mandir}/man4/smugfs.4.*
|
||||
%{_mandir}/man4/srv.4.*
|
||||
%{_mandir}/man4/tapefs.4.*
|
||||
%{_mandir}/man4/vacfs.4.*
|
||||
%{_mandir}/man7/0intro.7.*
|
||||
%{_mandir}/man7/color.7.*
|
||||
%{_mandir}/man7/face.7.*
|
||||
%{_mandir}/man7/font.7.*
|
||||
%{_mandir}/man7/htmlroff.7.*
|
||||
%{_mandir}/man7/image.7.*
|
||||
%{_mandir}/man7/keyboard.7.*
|
||||
%{_mandir}/man7/man.7.*
|
||||
%{_mandir}/man7/map.7.*
|
||||
%{_mandir}/man7/mhtml.7.*
|
||||
%{_mandir}/man7/mpictures.7.*
|
||||
%{_mandir}/man7/ms.7.*
|
||||
%{_mandir}/man7/ndb.7.*
|
||||
%{_mandir}/man7/plot.7.*
|
||||
%{_mandir}/man7/plumb.7.*
|
||||
%{_mandir}/man7/regexp.7.*
|
||||
%{_mandir}/man7/thumbprint.7.*
|
||||
%{_mandir}/man7/utf.7.*
|
||||
%{_mandir}/man7/venti.7.*
|
||||
%{_mandir}/man8/fossilcons.8.*
|
||||
%{_mandir}/man8/getflags.8.*
|
||||
%{_mandir}/man8/listen1.8.*
|
||||
%{_mandir}/man8/mkfs.8.*
|
||||
%{_mandir}/man8/vbackup.8.*
|
||||
%{_mandir}/man8/venti-backup.8.*
|
||||
%{_mandir}/man8/venti-fmt.8.*
|
||||
%{_mandir}/man8/venti.8.*
|
||||
|
||||
%changelog
|
||||
* Sun Feb 15 2026 Owen Zimmerman <owen@fyralabs.com>
|
||||
- Initial commit
|
||||
@@ -0,0 +1,5 @@
|
||||
rpm.global("commit", gh_commit("9fans/plan9port"));
|
||||
if rpm.changed() {
|
||||
rpm.release();
|
||||
rpm.global("commit_date", date());
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 5b6458f9fdcf2d06c5e9fae3fa3ace67417dcdab
|
||||
%global commit f9815fac4329ca5d0d7bf9de9e3473271d66e8d9
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260221
|
||||
%global commitdate 20260226
|
||||
%global ver 1.0.20
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
Name: veracrypt
|
||||
Version: %{sanitized_ver}
|
||||
Release: 1%?dist
|
||||
Release: 2%?dist
|
||||
Summary: Disk encryption with strong security based on TrueCrypt
|
||||
URL: https://veracrypt.jp/en/Home.html
|
||||
Source0: https://github.com/veracrypt/VeraCrypt/archive/refs/tags/VeraCrypt_%version.tar.gz
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
Name: xbps
|
||||
Version: 0.60.7
|
||||
Release: 1%?dist
|
||||
Release: 2%?dist
|
||||
License: BSD-2-Clause AND BSD-3-Clause AND ISC
|
||||
Summary: A binary package system designed and implemented from scratch
|
||||
URL: https://github.com/void-linux/xbps
|
||||
@@ -15,7 +15,7 @@ BuildRequires: pkgconfig(pkgconf)
|
||||
BuildRequires: pkgconfig(zlib)
|
||||
BuildRequires: pkgconfig(openssl)
|
||||
BuildRequires: pkgconfig(libarchive) >= 3.3.3
|
||||
Requires: %name-lib = %evr
|
||||
Requires: %name-libs = %evr
|
||||
|
||||
%pkg_completion -B xbps xbps-checkvers xbps-create xbps-dgraph xbps-install xbps-pkgdb xbps-query xbps-reconfigure xbps-remove xbps-rindex
|
||||
%pkg_completion -z xbps xbps_src
|
||||
@@ -71,5 +71,8 @@ featureful and portable as much as possible.
|
||||
/var/db/%name/keys/*.plist
|
||||
|
||||
%changelog
|
||||
* Tue Feb 24 2026 Metcya <metcya@gmail.com> - 0.60.7-2
|
||||
- Fix broken dependency
|
||||
|
||||
* Fri Dec 12 2025 Metcya <metcya@gmail.com> - 0.60.6
|
||||
- package xbps
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
%global modulename xone
|
||||
|
||||
Name: %{modulename}-kmod
|
||||
Version: 0.5.5
|
||||
Version: 0.5.6
|
||||
Release: 1%?dist
|
||||
%if 0%{?fedora} <= 43 || 0%{?rhel} <= 10
|
||||
Epoch: 2
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global modulename xone
|
||||
|
||||
Name: dkms-%{modulename}
|
||||
Version: 0.5.5
|
||||
Version: 0.5.6
|
||||
Release: 1%?dist
|
||||
%if 0%{?fedora} <= 43 || 0%{?rhel} <= 10
|
||||
Epoch: 2
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global firmware_hash3 e2710daf81e7b36d35985348f68a81d18bc537a2b0c508ffdfde6ac3eae1bad7
|
||||
|
||||
Name: xone
|
||||
Version: 0.5.5
|
||||
Version: 0.5.6
|
||||
Release: 1%?dist
|
||||
%if 0%{?fedora} <= 43 || 0%{?rhel} <= 10
|
||||
Epoch: 2
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "breeze-plus-icon-theme.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
Name: breeze-plus-icon-theme
|
||||
Version: 6.19.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Breeze icon theme with additional icons
|
||||
Packager: Amy King <amy@amyrom.tech>
|
||||
|
||||
License: LGPL-2.1-only
|
||||
URL: https://github.com/mjkim0727/breeze-plus
|
||||
Source0: %{url}/archive/refs/tags/%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
%description
|
||||
%summary.
|
||||
|
||||
%prep
|
||||
%autosetup -n breeze-plus-%{version}
|
||||
%build
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{_datadir}/icons/
|
||||
cp -r src/* %{buildroot}%{_datadir}/icons/
|
||||
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_datadir}/icons/*
|
||||
|
||||
%changelog
|
||||
* Wed Feb 25 2026 Amy King <amy@amyrom.tech> - 6.19.0
|
||||
- Initial package
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user