From ad497b96ec9cb08a5ad9169bdc2d9361e7b75fb0 Mon Sep 17 00:00:00 2001 From: Shreenidhi Shedi Date: Wed, 4 Dec 2024 14:06:51 +0530 Subject: [PATCH] Keep tdnf spec in alignment with Photon's spec Remove autoinstall related instructions, they are obsolete now. Signed-off-by: Shreenidhi Shedi --- scripts/build-tdnf-rpms.in | 2 +- tdnf.spec.in | 28 +++++++++------------------- 2 files changed, 10 insertions(+), 20 deletions(-) diff --git a/scripts/build-tdnf-rpms.in b/scripts/build-tdnf-rpms.in index fde75676..9f0d89ce 100755 --- a/scripts/build-tdnf-rpms.in +++ b/scripts/build-tdnf-rpms.in @@ -47,7 +47,7 @@ mkdir -p "${rpm_build_path}"/{SOURCES,BUILD,RPMS/"${arch}"} mv -f "${full_name}".tar.gz "${rpm_build_path}"/SOURCES dist=$(rpm -q glibc | cut -d'.' -f3) -rpmbuild --nodeps -D "dist .${dist}" -D "_topdir ${rpm_build_path}" -bb "${project_name}".spec +rpmbuild --nocheck -D "dist .${dist}" -D "_topdir ${rpm_build_path}" -bb "${project_name}".spec mkdir -p ${rpmdir} mv -f "${rpm_build_path}"/RPMS/"${arch}"/*.rpm ${rpmdir} diff --git a/tdnf.spec.in b/tdnf.spec.in index 537949b1..a304f5c7 100644 --- a/tdnf.spec.in +++ b/tdnf.spec.in @@ -1,6 +1,5 @@ %define hist_db_dir %{_libdir}/sysimage/%{name} %define history_db_fn %{hist_db_dir}/history.db -%define history_autoins %{_sharedstatedir}/%{name}/autoinstalled %define history_util %{_libexecdir}/%{name}/%{name}-history-util %define _tdnfpluginsdir %{_libdir}/%{name}-plugins @@ -143,43 +142,36 @@ Requires: %{name} = %{version}-%{release} Systemd units that can periodically download package upgrades and apply them. %prep -%autosetup -p1 -n %{name}-%{version} +%autosetup -p1 %build -mkdir -p build -pushd build -cmake \ +%{cmake} \ -DCMAKE_BUILD_TYPE=Debug \ -DCMAKE_INSTALL_PREFIX=%{_prefix} \ -DCMAKE_INSTALL_LIBDIR=%{_libdir} \ -DSYSTEMD_DIR=%{_unitdir} \ .. -%make_build -%make_build python -popd +%{cmake_build} +%make_build -C %{__cmake_builddir} python %install -pushd build -%make_install %{?_smp_mflags} -popd +%{cmake_install} mkdir -p %{buildroot}{%{_var}/cache/%{name},%{_unitdir}} ln -sv %{name} %{buildroot}%{_bindir}/tyum ln -sv %{name} %{buildroot}%{_bindir}/yum ln -sv %{name} %{buildroot}%{_bindir}/tdnfj -pushd build/python -python3 setup.py install --skip-build --prefix=%{_prefix} --install-lib=%{python3_sitelib} --root=%{buildroot} +pushd %{__cmake_builddir}/python +%py3_install popd find %{buildroot} \( -name '*.a' -o -name '*.pyc' \) -delete -%if 0%{?with_check} %check pip3 install flake8 -%make_build -C build check -%endif +%make_build -C %{__cmake_builddir} check %post /sbin/ldconfig @@ -192,9 +184,7 @@ pip3 install flake8 # cannot use tdnf because that is still running even in postrans [ -d %{hist_db_dir} ] || mkdir -p %{hist_db_dir} [ -f %{history_db_fn} ] || %{history_util} init -[ ! -f %{history_autoins} ] || exit 0 -%{history_util} mark remove $(cat %{history_autoins}) -mv %{history_autoins} %{history_autoins}.backup +exit 0 %triggerin -- motd [ $2 -eq 1 ] || exit 0