diff --git a/anda/suites/ente/cli/golang-github-ente-io-cli.spec b/anda/suites/ente/cli/golang-github-ente-io-cli.spec index 523e3ad8f1..f9abbc2682 100644 --- a/anda/suites/ente/cli/golang-github-ente-io-cli.spec +++ b/anda/suites/ente/cli/golang-github-ente-io-cli.spec @@ -42,7 +42,8 @@ Source: %{gosource} %if %{without bootstrap} %build %global gomodulesmode GO111MODULE=on -%gobuild -o %{gobuilddir}/bin/ente %{goipath}/cli +cd cli +%gobuild -o %{gobuilddir}/bin/ente . %endif %install diff --git a/anda/suites/ente/ensu/ensu.spec b/anda/suites/ente/ensu/ensu.spec index 8a47093234..76f8347d24 100644 --- a/anda/suites/ente/ensu/ensu.spec +++ b/anda/suites/ente/ensu/ensu.spec @@ -22,6 +22,7 @@ BuildRequires: cmake %tauri_buildrequires %autosetup -n ente-%tag cd rust/apps/ensu %tauri_prep +cd web && npm ci %build cd rust/apps/ensu diff --git a/anda/suites/ente/enteauth/anda.hcl b/anda/suites/ente/enteauth/anda.hcl deleted file mode 100644 index 070b14b41c..0000000000 --- a/anda/suites/ente/enteauth/anda.hcl +++ /dev/null @@ -1,8 +0,0 @@ -project pkg { - rpm { - spec = "enteauth.spec" - } - labels { - mock = 1 # flutter requires root - } -} diff --git a/anda/suites/ente/enteauth/enteauth.spec b/anda/suites/ente/enteauth/enteauth.spec deleted file mode 100644 index 503f1586ee..0000000000 --- a/anda/suites/ente/enteauth/enteauth.spec +++ /dev/null @@ -1,36 +0,0 @@ -%global appid io.ente.enteauth -%global tag auth-v4.4.23 - -Name: enteauth -Version: %(echo %tag | sed 's/^auth-v//') -Release: 1%{?dist} -Summary: 2FA app with free end-to-end encrypted backup and sync -License: AGPL-3.0-only -URL: https://ente.com -Source0: https://github.com/ente-io/ente/archive/refs/tags/%tag.tar.gz -Packager: madonuko -BuildRequires: flutter - -%description -%summary. - -%prep -%autosetup -n ente-%tag - -%build -pushd mobile/apps/auth -flutter config --enable-linux-desktop -flutter build linux --release - -%install - -%terra_appstream mobile/apps/auth/linux/packaging/enteauth.appdata.xml -%desktop_file_install mobile/apps/auth/linux/packaging/enteauth.desktop - -%files -%doc CODE_OF_CONDUCT.md CONTRIBUTING.md README.md SECURITY.md SUPPORT.md README.md -%license LICENSE - -%changelog -* Tue Jun 16 2026 madonuko - 4.4.23-1 -- Initial package. diff --git a/anda/suites/ente/enteauth/update.rhai b/anda/suites/ente/enteauth/update.rhai deleted file mode 100644 index 973fae733a..0000000000 --- a/anda/suites/ente/enteauth/update.rhai +++ /dev/null @@ -1,10 +0,0 @@ -let tagobjs = get("https://api.github.com/repos/ente-io/ente/tags").json_arr(); -for tagobj in tagobjs { - if tagobj.name.starts_with("auth-v") { - rpm.global("tag", tagobj.name); - if rpm.changed() { - rpm.release(); - break; - } - } -}