Compare commits

...

8 Commits

Author SHA1 Message Date
Raboneko 1cdea97092 bump(nightly): noctalia-git libsingularity zed-nightly xray-nightly nim-nightly types-colorama cloud-hypervisor-nightly glasgow natscli 2026-06-25 03:57:12 +00:00
Raboneko fad09e8471 bump: discord-canary-openasar discord-canary ruffle-nightly rust-mise 2026-06-25 03:33:54 +00:00
Raboneko 6e33116ff6 bump: discord-canary-openasar discord-canary flutter 2026-06-24 23:52:28 +00:00
madomado 0068efdca3 add: ente ensu (#13110) 2026-06-25 01:20:31 +02:00
Owen Zimmerman 9bb69acb5e fix: rust-gitoxide (#13328) 2026-06-24 18:06:47 -05:00
Owen Zimmerman 65d2e22e9f fix: zed-preview (#13327) 2026-06-24 18:06:37 -05:00
Owen Zimmerman 4c3050f52b fix: zed (#13326) 2026-06-24 18:06:24 -05:00
Owen Zimmerman 50c53e9392 fix: signal-desktop (#13329)
Signed-off-by: Owen-sz <owen@fyralabs.com>
2026-06-24 16:05:02 -07:00
26 changed files with 202 additions and 45 deletions
@@ -6,7 +6,7 @@
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
Name: discord-canary-openasar
Version: 1.0.1343
Version: 1.0.1345
Release: 1%{?dist}
Summary: A snappier Discord rewrite with features like further customization and theming
License: MIT AND https://discord.com/terms
+1 -1
View File
@@ -1,5 +1,5 @@
Name: discord-canary
Version: 1.0.1343
Version: 1.0.1345
Release: 1%{?dist}
Summary: Free Voice and Text Chat for Gamers
URL: discord.com
+5
View File
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "golang-github-ente-io-cli.spec"
}
}
@@ -0,0 +1,75 @@
# Generated by go2rpm 1.19.0
%bcond check 0
%bcond bootstrap 0
%if %{with bootstrap}
%global debug_package %{nil}
%endif
%if %{with bootstrap}
%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^golang\\(.*\\)$
%endif
# https://github.com/ente-io/ente
%global goipath github.com/ente-io/ente/cli
%global tag cli-v0.2.3
Version: %(echo %tag | sed 's/^cli-v//')
%gometa -f
%global common_description %{expand:
The Ente CLI is a Command Line Utility for exporting data from Ente. It also does a few more things, for example, you can use it to decrypt the export from Ente Auth.}
%global golicenses LICENSE
%global godocs CODE_OF_CONDUCT.md CONTRIBUTING.md cli/README.md SECURITY.md SUPPORT.md
Name: ente
Release: 1%?dist
Summary: 💚 End-to-end encrypted cloud for everything
Packager: madonuko <mado@fyralabs.com>
License: AGPL-3.0-only
URL: ente.com
Source: %{gosource}
%description %{common_description}
%gopkg
%prep
%goprep -A
%autopatch -p1
%if %{without bootstrap}
%build
%global gomodulesmode GO111MODULE=on
cd cli
%gobuild -o %{gobuilddir}/bin/ente .
%endif
%install
cd cli
%gopkginstall
%if %{without bootstrap}
install -m 0755 -vd %{buildroot}%{_bindir}
install -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/
%endif
%if %{without bootstrap}
%if %{with check}
%check
%gocheck
%endif
%endif
%if %{without bootstrap}
%files
%license LICENSE
%doc CODE_OF_CONDUCT.md CONTRIBUTING.md README.md SECURITY.md SUPPORT.md cli/README.md
%{_bindir}/ente
%endif
%gopkgfiles
%changelog
* Tue Jun 16 2026 madonuko <mado@fyralabs.com> - 0.2.3-1
- Initial package.
+10
View File
@@ -0,0 +1,10 @@
let tagobjs = get("https://api.github.com/repos/ente-io/ente/tags").json_arr();
for tagobj in tagobjs {
if tagobj.name.starts_with("cli-v") {
rpm.global("tag", tagobj.name);
if rpm.changed() {
rpm.release();
break;
}
}
}
+5
View File
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "ensu.spec"
}
}
+9
View File
@@ -0,0 +1,9 @@
[Desktop Entry]
Name=Ensu
Comment=Ensu Desktop App
Exec=Ensu
Icon=io.ente.ensu
Terminal=false
Type=Application
Categories=Utility;
StartupNotify=true
+58
View File
@@ -0,0 +1,58 @@
%global tag ensu-v0.1.17
%global appid io.ente.ensu
%global developer "Ente"
%global org "io.ente"
%global appstream_component desktop-application
# the original version of %%_package_note_flags expects cc/gcc to parse the ld flags,
# but for wasm the `lld -flavor wasm` linker is called directly
%dnl --package-metadata={\\"type\\":\\"rpm\\",\\"name\\":\\"%name\\",\\"version\\":\\"%version-%release\\",\\"architecture\\":\\"$RPM_ARCH\\",\\"osCpe\\":\\"cpe:/o:fedoraproject:fedora:%fedora\\"}
%define _package_note_flags %nil
%undefine _package_note_status
%define terra_rustflags %build_rustflags
%bcond_with mold
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
%global _distro_extra_cxxflags -fno-permissive
Name: ensu
Version: %(echo %tag | sed 's/^ensu-v//')
Release: 1%?dist
Summary: Private, personal LLM app that runs on your device and grows with you over time
License: AGPL-3.0-only
URL: https://ente.com/ensu
Source0: https://github.com/ente-io/ente/archive/refs/tags/%tag.tar.gz
Source1: ensu.desktop
Packager: madonuko <mado@fyralabs.com>
BuildRequires: cmake %tauri_buildrequires
BuildRequires: rust-std-static-wasm32-unknown-unknown
BuildRequires: clang-devel
%description
%summary.
%prep
%autosetup -n ente-%tag
pushd web
npm ci
popd
cd rust/apps/ensu
%tauri_prep
%build
cd rust/apps/ensu
%npm_build -Bc
%install
install -Dpm755 rust/target/rpm/Ensu -t %buildroot%_bindir
%desktop_file_install %{S:1}
install -Dpm644 rust/apps/ensu/src-tauri/icons/icon.png %buildroot%_hicolordir/1024x1024/apps/ensu.png
%terra_appstream
%files
%doc README.md CONTRIBUTING.md CODE_OF_CONDUCT.md SECURITY.md SUPPORT.md
%license LICENSE
%_bindir/Ensu
%_appsdir/ensu.desktop
%_hicolordir/*/apps/ensu.png
%_metainfodir/%appid.metainfo.xml
+10
View File
@@ -0,0 +1,10 @@
let tagobjs = get("https://api.github.com/repos/ente-io/ente/tags").json_arr();
for tagobj in tagobjs {
if tagobj.name.starts_with("ensu-v") {
rpm.global("tag", tagobj.name);
if rpm.changed() {
rpm.release();
break;
}
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
%global ver 2026-06-24
%global ver 2026-06-25
%global goodver %(echo %ver | sed 's/-//g')
%global __brp_mangle_shebangs %{nil}
%bcond_without mold
@@ -1,11 +0,0 @@
--- a/package.json 2026-03-23 09:45:41.545576312 +0100
+++ b/package.json 2026-03-23 09:46:51.714180613 +0100
@@ -424,7 +424,7 @@
]
},
"engines": {
- "node": "24.15.0"
+ "node": ">= 22"
},
"build": {
"appId": "org.whispersystems.signal-desktop",
+4 -1
View File
@@ -9,7 +9,6 @@ URL: https://signal.org
Source0: https://github.com/signalapp/Signal-Desktop/archive/refs/tags/v%{version}.tar.gz
Source1: signal.desktop
Source2: org.signal.Signal.metainfo.xml
Patch0: fix-runtime.patch
License: AGPL-3.0-only AND %{electron_license}
BuildRequires: pulseaudio-libs-devel
@@ -75,6 +74,7 @@ echo "Electron Builder" > %{rpmbuilddir}/webapp-tool.txt
%install
mv ./packages/mute-state-change/LICENSE ./packages/mute-state-change/LICENSE.mute-state-change
mv ./packages/windows-ucv/LICENSE ./packages/mute-state-change/LICENSE.windows-ucv
%electron_install -i signal -l -I build/icons/png
%desktop_file_install %{SOURCE1}
@@ -104,6 +104,9 @@ mv LICENSE LICENSE.signal-desktop
%{_metainfodir}/org.signal.Signal.metainfo.xml
%changelog
* Thu Jun 25 2026 Owen Zimmerman <owen@fyralabs.com>
- Fix more license name conflicts, remove patch
* Sun Jun 14 2026 june-fish <git@june.fish>
- Fix license name conflicts
+1 -1
View File
@@ -5,7 +5,7 @@
%global crate mise
Name: rust-mise
Version: 2026.6.13
Version: 2026.6.14
Release: 1%{?dist}
Summary: Front-end to your dev env
+2 -2
View File
@@ -2,9 +2,9 @@
%global ver 5.0.0
%global commit a5eeef13338167fb85ecf8ea7c2fabb4c5536010
%global commit 37b7448313a8a5c127c14a9db843080015492ef8
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global commitdate 20260623
%global commitdate 20260625
Name: noctalia-git
Version: %{ver}^%{commitdate}git.%{shortcommit}
@@ -1,5 +1,5 @@
%global commit a7e59124efa6eb174e7bc9b4dfa9e1ea5362669e
%global commit_date 20260621
%global commit cac94560c7d918e3d948a7a43806a10af2b1aba4
%global commit_date 20260625
%global shortcommit %(c=%{commit}; echo ${c:0:7})
Name: libsingularity
+1 -1
View File
@@ -1,5 +1,5 @@
Name: flutter
Version: 3.44.3
Version: 3.44.4
Release: 1%{?dist}
Summary: SDK for crafting beautiful, fast user experiences from a single codebase
License: BSD-3-Clause
+3 -3
View File
@@ -1,7 +1,7 @@
%global commit c49a29f46179525358eb74dbce67fddb2aafa1f0
%global commit 17c0ebb0f7b8b512d99f396e543e71c1775ff6f6
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global commit_date 20260624
%global ver 1.9.0
%global commit_date 20260625
%global ver 1.10.0
%bcond_with check
%bcond_with debug_no_build
-3
View File
@@ -46,9 +46,6 @@ BuildRequires: fontconfig-devel
BuildRequires: wayland-devel
BuildRequires: libxkbcommon-x11-devel
BuildRequires: openssl-devel
%if 0%{?fedora}
BuildRequires: openssl-devel-engine
%endif
BuildRequires: libzstd-devel
BuildRequires: perl-FindBin
BuildRequires: perl-IPC-Cmd
+1 -5
View File
@@ -20,7 +20,7 @@ Name: zed
Version: 1.8.2
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
SourceLicense: Apache-2.0 AND GPL-3.0-or-later
License: ((Apache-2.0 OR MIT) AND BSD-3-Clause) 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 AGPL.3.0-only AND AGPL-3.0-or-later AND (Apache-2.0 OR BSL-1.0 OR MIT) 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 WITH LLVM-exception) AND Apache-2.0 AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND (BSD-2-Clause OR MIT OR Apache-2.0) AND BSD-2-Clause AND (CC0-1.0 OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception) AND (CC0-1.0 OR Apache-2.0) AND (CC0-1.0 OR MIT-0 OR Apache-2.0) AND CC0-1.0 AND GPL-3.0-or-later AND (ISC AND (Apache-2.0 OR ISC) AND OpenSSL) AND (ISC AND (Apache-2.0 OR ISC)) AND ISC AND (MIT AND (MIT OR Apache-2.0)) AND (MIT AND BSD-3-Clause) AND (MIT OR Apache-2.0 OR CC0-1.0) AND (MIT OR Apache-2.0 OR NCSA) 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 Unicode-3.0 AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT) AND Zlib
URL: https://zed.dev/
Source0: https://github.com/zed-industries/zed/archive/refs/tags/v%{version}.tar.gz
@@ -46,9 +46,6 @@ BuildRequires: fontconfig-devel
BuildRequires: wayland-devel
BuildRequires: libxkbcommon-x11-devel
BuildRequires: openssl-devel
%if 0%{?fedora}
BuildRequires: openssl-devel-engine
%endif
BuildRequires: libzstd-devel
BuildRequires: perl-FindBin
BuildRequires: perl-IPC-Cmd
@@ -166,7 +163,6 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%appid.desktop
%files
%doc CODE_OF_CONDUCT.md
%doc README.md
%license LICENSE-AGPL
%license LICENSE-APACHE
%license LICENSE-GPL
%if %{without debug_no_build}
+2 -2
View File
@@ -1,7 +1,7 @@
%global commit ac04c445bd09541cc9c35a120ee01d8a177a4d83
%global commit b12bc504c8c2879a98e4aadb1c3f14d11f86cd0d
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global ver v26.3.27
%global commit_date 20260624
%global commit_date 20260625
%global goipath github.com/XTLS/Xray-core
Version: %{ver}^%{commit_date}git.%{shortcommit}
+2 -2
View File
@@ -1,8 +1,8 @@
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
%global commit d251eaedeb35f4cf9d7b0bf3f197bf67f4821600
%global commit 16b5129a1efda19ef6231312329ba66b3e7bdade
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global ver 2.3.1
%global commit_date 20260624
%global commit_date 20260625
%global debug_package %nil
Name: nim-nightly
@@ -1,5 +1,5 @@
%global commit f9e0f8ce9a933648022d618961693ee74cb8d4f4
%global commit_date 20260624
%global commit 8e6a886ca5b14742924be721d345a619762d6e93
%global commit_date 20260625
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global pypi_name types-colorama
+1 -1
View File
@@ -13,7 +13,7 @@ License: MIT OR Apache-2.0
URL: https://crates.io/crates/gitoxide
Source: %{terra_crates_source}
BuildRequires: openssl-devel-engine cmake anda-srpm-macros rust-packaging >= 21 mold
BuildRequires: openssl-devel cmake anda-srpm-macros rust-packaging >= 21 mold
%global _description %{expand:
A command-line application for interacting with git repositories.}
@@ -1,5 +1,5 @@
%global commit 755d42eec0a18025ccbb215f08e11a526310bc2c
%global commit_date 20260624
%global commit f56fa3a8654e25bcf2dd324d57e3d46b2fda5a2a
%global commit_date 20260625
%global shortcommit %(c=%{commit}; echo ${c:0:7})
Name: cloud-hypervisor-nightly
+2 -2
View File
@@ -1,5 +1,5 @@
%global commit 9c2f0170d0461a6bbd15fa5f1c975433ba29747d
%global commit_date 20260616
%global commit a3f065521af4dbe1e7a8d861f0caf32dc8fd407a
%global commit_date 20260625
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global pypi_name glasgow
+2 -2
View File
@@ -1,7 +1,7 @@
# https://github.com/nats-io/natscli
%global goipath github.com/nats-io/natscli
%global commit 565da5e43bc513c1a91576511dc0a98104eeae79
%global commit_date 20260624
%global commit 885fc11ab69468935d1575c85b4dc14cb5809010
%global commit_date 20260625
%global shortcommit %{sub %{commit} 1 7}
%gometa -f