From 9f108433e9806acfa7a16719c1af01dd8028c00a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 18:30:02 +0000 Subject: [PATCH 01/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lxtask.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lxtask.spec b/lxtask.spec index bf75ce0..b178f79 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -28,7 +28,7 @@ Name: lxtask Version: 0.1.10 -Release: %{fedorarel}%{?dist}.2 +Release: %{fedorarel}%{?dist}.3 Summary: Lightweight and desktop independent task manager License: GPLv2+ @@ -125,6 +125,9 @@ cd .. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.1.10-1.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 0.1.10-1.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From c8c2a7deb68630e4fad58a207c42f05327ae9777 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 20:18:26 +0000 Subject: [PATCH 02/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lxtask.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lxtask.spec b/lxtask.spec index b178f79..866d325 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -28,7 +28,7 @@ Name: lxtask Version: 0.1.10 -Release: %{fedorarel}%{?dist}.3 +Release: %{fedorarel}%{?dist}.4 Summary: Lightweight and desktop independent task manager License: GPLv2+ @@ -125,6 +125,9 @@ cd .. %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 0.1.10-1.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Thu Jan 20 2022 Fedora Release Engineering - 0.1.10-1.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From ca44a17a384e88d12112c36c26f08b29f9dea093 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 18:44:29 +0000 Subject: [PATCH 03/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lxtask.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lxtask.spec b/lxtask.spec index 866d325..49bc9be 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -28,7 +28,7 @@ Name: lxtask Version: 0.1.10 -Release: %{fedorarel}%{?dist}.4 +Release: %{fedorarel}%{?dist}.5 Summary: Lightweight and desktop independent task manager License: GPLv2+ @@ -125,6 +125,9 @@ cd .. %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 0.1.10-1.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Thu Jul 21 2022 Fedora Release Engineering - 0.1.10-1.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 755a9eb219c813048bccfbc61321b5189daf5cfb Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Mon, 13 Mar 2023 10:16:06 +0900 Subject: [PATCH 04/20] rename release macro to make rpmdev-bumprelease work --- lxtask.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lxtask.spec b/lxtask.spec index 49bc9be..28a911f 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -20,15 +20,15 @@ %global mainrel 1 %if 0%{?use_release} >= 1 -%global fedorarel %{?prever:0.}%{mainrel}%{?prever:.%{prerpmver}} +%global baserelease %{?prever:0.}%{mainrel}%{?prever:.%{prerpmver}} %endif %if 0%{?use_gitbare} >= 1 -%global fedorarel %{mainrel}.%{git_version} +%global baserelease %{mainrel}.%{git_version} %endif Name: lxtask Version: 0.1.10 -Release: %{fedorarel}%{?dist}.5 +Release: %{baserelease}%{?dist}.5 Summary: Lightweight and desktop independent task manager License: GPLv2+ From 32c7b3e732136af87d6453db2ea6d22ffc487821 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Fri, 24 Mar 2023 16:20:46 +0900 Subject: [PATCH 05/20] fix baserelease usage --- lxtask.spec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lxtask.spec b/lxtask.spec index 28a911f..7eee770 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -17,18 +17,18 @@ %global git_version D%{gitbaredate}git%{git_short} %endif -%global mainrel 1 +%global baserelease 1 %if 0%{?use_release} >= 1 -%global baserelease %{?prever:0.}%{mainrel}%{?prever:.%{prerpmver}} +%global fedorarel %{?prever:0.}%{baserelease}%{?prever:.%{prerpmver}} %endif %if 0%{?use_gitbare} >= 1 -%global baserelease %{mainrel}.%{git_version} +%global fedorarel %{baserelease}.%{git_version} %endif Name: lxtask Version: 0.1.10 -Release: %{baserelease}%{?dist}.5 +Release: %{fedorarel}%{?dist} Summary: Lightweight and desktop independent task manager License: GPLv2+ From a81ab458635f0b54201885e92001c7e95415faba Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jul 2023 13:31:03 +0000 Subject: [PATCH 06/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lxtask.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lxtask.spec b/lxtask.spec index 7eee770..94e0dea 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -17,7 +17,7 @@ %global git_version D%{gitbaredate}git%{git_short} %endif -%global baserelease 1 +%global baserelease 2 %if 0%{?use_release} >= 1 %global fedorarel %{?prever:0.}%{baserelease}%{?prever:.%{prerpmver}} @@ -125,6 +125,9 @@ cd .. %changelog +* Thu Jul 20 2023 Fedora Release Engineering - 0.1.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Thu Jan 19 2023 Fedora Release Engineering - 0.1.10-1.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 2bdb87ab7deddd73e45f44535a932d0488ee1952 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Mon, 14 Aug 2023 13:04:53 +0900 Subject: [PATCH 07/20] indentation etc --- lxtask.spec | 93 ++++++++++++++++++++++++++++------------------------- 1 file changed, 49 insertions(+), 44 deletions(-) diff --git a/lxtask.spec b/lxtask.spec index 94e0dea..2f3124f 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -1,55 +1,60 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=445140 -%global use_release 1 -%global use_gitbare 0 +%global use_release 1 +%global use_gitbare 0 %if 0%{?use_gitbare} < 1 # force -%global use_release 1 +%global use_release 1 %endif +%global git_version %{nil} +%global git_ver_rpm %{nil} +%global git_builddir %{nil} + %if 0%{?use_gitbare} -%global gittardate 20190301 -%global gittartime 2144 -%global gitbaredate 20190224 -%global git_rev db6017ff991f298b7a362ce5acbdd4d84cf40b18 -%global git_short %(echo %{git_rev} | cut -c-8) -%global git_version D%{gitbaredate}git%{git_short} +%global gittardate 20190301 +%global gittartime 2144 + +%global gitbaredate 20190224 +%global git_rev db6017ff991f298b7a362ce5acbdd4d84cf40b18 +%global git_short %(echo %{git_rev} | cut -c-8) +%global git_version %{gitbaredate}git%{git_short} %endif -%global baserelease 2 - -%if 0%{?use_release} >= 1 -%global fedorarel %{?prever:0.}%{baserelease}%{?prever:.%{prerpmver}} -%endif -%if 0%{?use_gitbare} >= 1 -%global fedorarel %{baserelease}.%{git_version} +%if 0%{?use_git} || 0%{?use_gitbare} +%global git_ver_rpm ^%{git_version} +%global git_builddir -%{git_version} %endif -Name: lxtask -Version: 0.1.10 -Release: %{fedorarel}%{?dist} -Summary: Lightweight and desktop independent task manager -License: GPLv2+ -URL: http://lxde.sourceforge.net/ +%global main_version 0.1.10 + +Name: lxtask +Version: %{main_version}%{git_ver_rpm} +Release: 2%{?dist} +Summary: Lightweight and desktop independent task manager + +# SPDX confirmed +License: GPL-2.0-or-later +URL: http://lxde.sourceforge.net/ %if 0%{?use_gitbare} Source0: %{name}-%{gittardate}T%{gittartime}.tar.gz %endif %if 0%{?use_release} -Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.xz +Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.xz %endif -BuildRequires: make -BuildRequires: gcc -BuildRequires: git -BuildRequires: pkgconfig(gtk+-2.0) > 2.6 -BuildRequires: desktop-file-utils -BuildRequires: gettext -BuildRequires: intltool +BuildRequires: make +BuildRequires: gcc +BuildRequires: git +BuildRequires: pkgconfig(gtk+-2.0) > 2.6 +BuildRequires: desktop-file-utils +BuildRequires: gettext +BuildRequires: intltool %if 0%{?use_gitbare} -BuildRequires: automake -BuildRequires: libtool +BuildRequires: automake +BuildRequires: libtool %endif @@ -62,17 +67,17 @@ totally desktop independent and only requires pure gtk+. %prep %if 0%{?use_release} -%setup -q %{?git_version:-n %{name}-%{version}-%{?git_version}} +%setup -q %{name}-%{main_version}%{git_builddir} git init %endif %if 0%{?use_gitbare} -%setup -q -c -T -a 0 +%setup -q -c -T -n %{name}-%{main_version}%{git_builddir} -a 0 git clone ./%{name}.git/ cd %{name} -git checkout -b %{version}-fedora %{git_rev} +git checkout -b %{main_version}-fedora %{git_rev} cp -a [A-Z]* .. %endif @@ -92,7 +97,7 @@ bash autogen.sh %endif %configure -make %{?_smp_mflags} +%make_build %install @@ -100,15 +105,12 @@ make %{?_smp_mflags} cd %{name} %endif -make install DESTDIR=%{buildroot} INSTALL="install -p" +%make_install desktop-file-install \ - %if (0%{?fedora} && 0%{?fedora} < 19) || (0%{?rhel} && 0%{?rhel} < 7) - --vendor fedora \ - %endif - --delete-original \ - --dir=%{buildroot}%{_datadir}/applications \ - %{buildroot}%{_datadir}/applications/%{name}.desktop + --delete-original \ + --dir=%{buildroot}%{_datadir}/applications \ + %{buildroot}%{_datadir}/applications/%{name}.desktop %if 0%{?use_gitbare} cd .. @@ -117,7 +119,10 @@ cd .. %find_lang %{name} %files -f %{name}.lang -%doc AUTHORS ChangeLog README TODO +%doc AUTHORS +%doc ChangeLog +%doc README +%doc TODO %license COPYING %{_bindir}/%{name} %{_datadir}/applications/*%{name}.desktop From 667c3772e250cfa15a3864ec71aac27a85191f68 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Mon, 14 Aug 2023 13:06:56 +0900 Subject: [PATCH 08/20] trim .gitignore --- .gitignore | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 3e56daa..addd02a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,2 @@ -lxtask-0.1.3.tar.gz -/lxtask-0.1.4.tar.gz -/lxtask-0.1.6.tar.xz -/lxtask-0.1.7.tar.xz -/lxtask-0.1.8.tar.xz -/lxtask-20190301T2144.tar.gz -/lxtask-0.1.9.tar.xz -/lxtask-0.1.10.tar.xz +/lxtask-*.tar.xz +/lxtask-*.tar.gz From 05c24387a94de2087f4c5826a7c3b50e35e58e2f Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Mon, 14 Aug 2023 13:36:41 +0900 Subject: [PATCH 09/20] Update to the latest git Switch to GTK3 --- create-lxtask-git-bare-tarball.sh | 28 ++++++++++++++++++++++++++++ lxtask.spec | 25 ++++++++++++++++--------- sources | 2 +- 3 files changed, 45 insertions(+), 10 deletions(-) create mode 100644 create-lxtask-git-bare-tarball.sh diff --git a/create-lxtask-git-bare-tarball.sh b/create-lxtask-git-bare-tarball.sh new file mode 100644 index 0000000..0c50d00 --- /dev/null +++ b/create-lxtask-git-bare-tarball.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +set -x +set -e + +REPONAME=lxtask +GITURL=https://github.com/lxde/${REPONAME}.git + +DATE=$(date '+%Y%m%d') +TIME=$(date '+%H%M') + +TARNAME=${REPONAME}-${DATE}T${TIME}.tar.gz + +PWDDIR=$(pwd) +TMPDIR=$(mktemp -d /var/tmp/libfm-XXXXXX) +pushd $TMPDIR + +git clone --mirror $GITURL + +pushd ${REPONAME}.git/ +git log --format=fuller | head -n 12 +popd + +tar czf ${TARNAME} ${REPONAME}.git/ + +cp -p ${TARNAME} $PWDDIR +popd +rm -rf $TMPDIR diff --git a/lxtask.spec b/lxtask.spec index 2f3124f..575c305 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -1,7 +1,7 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=445140 -%global use_release 1 -%global use_gitbare 0 +%global use_release 0 +%global use_gitbare 1 %if 0%{?use_gitbare} < 1 # force @@ -13,11 +13,11 @@ %global git_builddir %{nil} %if 0%{?use_gitbare} -%global gittardate 20190301 -%global gittartime 2144 +%global gittardate 20230814 +%global gittartime 1305 -%global gitbaredate 20190224 -%global git_rev db6017ff991f298b7a362ce5acbdd4d84cf40b18 +%global gitbaredate 20230802 +%global git_rev 5c0d34566ed1396e5dd8ed514b645a7b39f75f5b %global git_short %(echo %{git_rev} | cut -c-8) %global git_version %{gitbaredate}git%{git_short} %endif @@ -32,7 +32,7 @@ Name: lxtask Version: %{main_version}%{git_ver_rpm} -Release: 2%{?dist} +Release: 1%{?dist} Summary: Lightweight and desktop independent task manager # SPDX confirmed @@ -44,11 +44,12 @@ Source0: %{name}-%{gittardate}T%{gittartime}.tar.gz %if 0%{?use_release} Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.xz %endif +Source100: create-lxtask-git-bare-tarball.sh BuildRequires: make BuildRequires: gcc BuildRequires: git -BuildRequires: pkgconfig(gtk+-2.0) > 2.6 +BuildRequires: pkgconfig(gtk+-3.0) BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: intltool @@ -96,7 +97,9 @@ cd %{name} bash autogen.sh %endif -%configure +%configure \ + --enable-gtk3 \ + %{nil} %make_build @@ -130,6 +133,10 @@ cd .. %changelog +* Mon Aug 14 2023 Mamoru TASAKA - 0.1.10^20230802git5c0d3456-1 +- Update to the latest git +- Switch to GTK3 + * Thu Jul 20 2023 Fedora Release Engineering - 0.1.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild diff --git a/sources b/sources index 58eb55c..7089d08 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lxtask-0.1.10.tar.xz) = 21f3a145939b53136be11892d183f3549b1a736070bb0c69e0932009d46abfd4956d1ec1d904e58bd6fca0a30fa0cca0cce897a83113c3fe1591300cfddae99a +SHA512 (lxtask-20230814T1305.tar.gz) = 81c632edb0a7fa6f94740a7818b3b41d3fb3ff2032c3987467520c71fbdd90bf2c1087710426437fc29352f31ac405e4732c9f1d159b7c9221b9bba0cb1d9703 From c39fe93669013cbe9c054f9c9e240c9b3f07ba7d Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Mon, 14 Aug 2023 14:17:22 +0900 Subject: [PATCH 10/20] misc fix --- lxtask.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lxtask.spec b/lxtask.spec index 575c305..21a986f 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -42,7 +42,7 @@ URL: http://lxde.sourceforge.net/ Source0: %{name}-%{gittardate}T%{gittartime}.tar.gz %endif %if 0%{?use_release} -Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.xz +Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{main_version}.tar.xz %endif Source100: create-lxtask-git-bare-tarball.sh @@ -68,7 +68,7 @@ totally desktop independent and only requires pure gtk+. %prep %if 0%{?use_release} -%setup -q %{name}-%{main_version}%{git_builddir} +%setup -q -n %{name}-%{main_version}%{git_builddir} git init %endif From 07176ad430c2c6ea9e0aba757f55dd62f78ce340 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 06:40:48 +0000 Subject: [PATCH 11/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- lxtask.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lxtask.spec b/lxtask.spec index 21a986f..24881e3 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -32,7 +32,7 @@ Name: lxtask Version: %{main_version}%{git_ver_rpm} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight and desktop independent task manager # SPDX confirmed @@ -133,6 +133,9 @@ cd .. %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 0.1.10^20230802git5c0d3456-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Mon Aug 14 2023 Mamoru TASAKA - 0.1.10^20230802git5c0d3456-1 - Update to the latest git - Switch to GTK3 From 92915de175ce87d0b963663ca4781477208793e2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jan 2024 05:31:50 +0000 Subject: [PATCH 12/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- lxtask.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lxtask.spec b/lxtask.spec index 24881e3..f79c786 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -32,7 +32,7 @@ Name: lxtask Version: %{main_version}%{git_ver_rpm} -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lightweight and desktop independent task manager # SPDX confirmed @@ -133,6 +133,9 @@ cd .. %changelog +* Thu Jan 25 2024 Fedora Release Engineering - 0.1.10^20230802git5c0d3456-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 0.1.10^20230802git5c0d3456-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 27afcf4254d7b289dc510690933fdc5ed9c56254 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 18 Jul 2024 16:29:43 +0000 Subject: [PATCH 13/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- lxtask.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lxtask.spec b/lxtask.spec index f79c786..7e5b180 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -32,7 +32,7 @@ Name: lxtask Version: %{main_version}%{git_ver_rpm} -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lightweight and desktop independent task manager # SPDX confirmed @@ -133,6 +133,9 @@ cd .. %changelog +* Thu Jul 18 2024 Fedora Release Engineering - 0.1.10^20230802git5c0d3456-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Thu Jan 25 2024 Fedora Release Engineering - 0.1.10^20230802git5c0d3456-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 0552aa056a91336bb8b5ca512b05eefbd729c0da Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Thu, 15 Aug 2024 15:03:50 +0900 Subject: [PATCH 14/20] 0.1.11 --- lxtask.spec | 17 +++++++++-------- sources | 2 +- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/lxtask.spec b/lxtask.spec index 7e5b180..66444b3 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -1,7 +1,7 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=445140 -%global use_release 0 -%global use_gitbare 1 +%global use_release 1 +%global use_gitbare 0 %if 0%{?use_gitbare} < 1 # force @@ -28,11 +28,11 @@ %endif -%global main_version 0.1.10 +%global main_version 0.1.11 Name: lxtask Version: %{main_version}%{git_ver_rpm} -Release: 4%{?dist} +Release: 1%{?dist} Summary: Lightweight and desktop independent task manager # SPDX confirmed @@ -42,7 +42,7 @@ URL: http://lxde.sourceforge.net/ Source0: %{name}-%{gittardate}T%{gittartime}.tar.gz %endif %if 0%{?use_release} -Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{main_version}.tar.xz +Source0: https://github.com/lxde/%{name}/archive/%{main_version}/%{name}-%{version}.tar.gz %endif Source100: create-lxtask-git-bare-tarball.sh @@ -53,10 +53,8 @@ BuildRequires: pkgconfig(gtk+-3.0) BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: intltool -%if 0%{?use_gitbare} BuildRequires: automake BuildRequires: libtool -%endif %description @@ -94,9 +92,9 @@ git commit -m "base" -q %build %if 0%{?use_gitbare} cd %{name} -bash autogen.sh %endif +bash autogen.sh %configure \ --enable-gtk3 \ %{nil} @@ -133,6 +131,9 @@ cd .. %changelog +* Thu Aug 15 2024 Mamoru TASAKA - 0.1.11-1 +- 0.1.11 + * Thu Jul 18 2024 Fedora Release Engineering - 0.1.10^20230802git5c0d3456-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild diff --git a/sources b/sources index 7089d08..62a560a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lxtask-20230814T1305.tar.gz) = 81c632edb0a7fa6f94740a7818b3b41d3fb3ff2032c3987467520c71fbdd90bf2c1087710426437fc29352f31ac405e4732c9f1d159b7c9221b9bba0cb1d9703 +SHA512 (lxtask-0.1.11.tar.gz) = e0e4f6230263a230db7b3d07603b6b872fe5d5a7bbe55b50bcb0a3c2e25131030ce70d4e16b7f2b7681cafc8578b656d627df32fa042d984cd6b077ec007d9f9 From c7a635c61a5daa3c37e0ba41802ae0a36aafa5d6 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Sun, 25 Aug 2024 16:46:11 +0900 Subject: [PATCH 15/20] Update to the latest git --- lxtask.spec | 15 +++++++++------ sources | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/lxtask.spec b/lxtask.spec index 66444b3..dc01d63 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -1,7 +1,7 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=445140 -%global use_release 1 -%global use_gitbare 0 +%global use_release 0 +%global use_gitbare 1 %if 0%{?use_gitbare} < 1 # force @@ -13,11 +13,11 @@ %global git_builddir %{nil} %if 0%{?use_gitbare} -%global gittardate 20230814 -%global gittartime 1305 +%global gittardate 20240825 +%global gittartime 1559 -%global gitbaredate 20230802 -%global git_rev 5c0d34566ed1396e5dd8ed514b645a7b39f75f5b +%global gitbaredate 20240823 +%global git_rev 0113fe4ee95a039da5aa43ad2de975149abbf7a7 %global git_short %(echo %{git_rev} | cut -c-8) %global git_version %{gitbaredate}git%{git_short} %endif @@ -131,6 +131,9 @@ cd .. %changelog +* Sun Aug 25 2024 Mamoru TASAKA - 0.1.11^20240823git0113fe4e-1 +- Update to the latest git + * Thu Aug 15 2024 Mamoru TASAKA - 0.1.11-1 - 0.1.11 diff --git a/sources b/sources index 62a560a..3f340b0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lxtask-0.1.11.tar.gz) = e0e4f6230263a230db7b3d07603b6b872fe5d5a7bbe55b50bcb0a3c2e25131030ce70d4e16b7f2b7681cafc8578b656d627df32fa042d984cd6b077ec007d9f9 +SHA512 (lxtask-20240825T1559.tar.gz) = c54f66cbe47808c00418aa92a892c8f5c0db1f5c30590e45aedbebfca8eca2a9c892e2853543970875e9609c835404765eb520905bc7b58abaf986fabd9b1378 From 037f7a5011ea3b25932abe6f4275937a68676df5 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Fri, 30 Aug 2024 11:45:59 +0900 Subject: [PATCH 16/20] Update to the latest git --- lxtask.spec | 11 +++++++---- sources | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/lxtask.spec b/lxtask.spec index dc01d63..66e6746 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -13,11 +13,11 @@ %global git_builddir %{nil} %if 0%{?use_gitbare} -%global gittardate 20240825 -%global gittartime 1559 +%global gittardate 20240830 +%global gittartime 1141 -%global gitbaredate 20240823 -%global git_rev 0113fe4ee95a039da5aa43ad2de975149abbf7a7 +%global gitbaredate 20240828 +%global git_rev 67c04303e9a4d08569ae3b84012d3abf8c44adcf %global git_short %(echo %{git_rev} | cut -c-8) %global git_version %{gitbaredate}git%{git_short} %endif @@ -131,6 +131,9 @@ cd .. %changelog +* Fri Aug 30 2024 Mamoru TASAKA - 0.1.11^20240828git67c04303-1 +- Update to the latest git + * Sun Aug 25 2024 Mamoru TASAKA - 0.1.11^20240823git0113fe4e-1 - Update to the latest git diff --git a/sources b/sources index 3f340b0..99a5fd3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lxtask-20240825T1559.tar.gz) = c54f66cbe47808c00418aa92a892c8f5c0db1f5c30590e45aedbebfca8eca2a9c892e2853543970875e9609c835404765eb520905bc7b58abaf986fabd9b1378 +SHA512 (lxtask-20240830T1141.tar.gz) = 39bd54b52acfbcf86646cb0bf3a02ec25ecfac231edad70f0039bcb432f2bb64b670238d76d7462e4313ee4f8c9254b3f53128de95cc3b4364b11a6a7375cd08 From a78b0546f52a8ffd5bc081f51f2e1163b9d9d447 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Wed, 2 Oct 2024 22:24:29 +0900 Subject: [PATCH 17/20] Update to the latest git --- lxtask.spec | 11 +++++++---- sources | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/lxtask.spec b/lxtask.spec index 66e6746..31a93bf 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -13,11 +13,11 @@ %global git_builddir %{nil} %if 0%{?use_gitbare} -%global gittardate 20240830 -%global gittartime 1141 +%global gittardate 20241002 +%global gittartime 2221 -%global gitbaredate 20240828 -%global git_rev 67c04303e9a4d08569ae3b84012d3abf8c44adcf +%global gitbaredate 20240905 +%global git_rev 6aaa2949c8caf63cda04ee4068fe389751aa1e7b %global git_short %(echo %{git_rev} | cut -c-8) %global git_version %{gitbaredate}git%{git_short} %endif @@ -131,6 +131,9 @@ cd .. %changelog +* Wed Oct 02 2024 Mamoru TASAKA - 0.1.11^20240905git6aaa2949-1 +- Update to the latest git + * Fri Aug 30 2024 Mamoru TASAKA - 0.1.11^20240828git67c04303-1 - Update to the latest git diff --git a/sources b/sources index 99a5fd3..a8f0a9c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lxtask-20240830T1141.tar.gz) = 39bd54b52acfbcf86646cb0bf3a02ec25ecfac231edad70f0039bcb432f2bb64b670238d76d7462e4313ee4f8c9254b3f53128de95cc3b4364b11a6a7375cd08 +SHA512 (lxtask-20241002T2221.tar.gz) = 3a96af3a76f490d5d575021ec97cf02434b0ad89268ac7185471e2ad0bc3b46c1af58a0de5fba582c14c2eaba3148d5eac2a068ec820715fb3420e1c611c365a From e0412525245cfe40d5fefda5bc6a53aebd14d41c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jan 2025 16:36:30 +0000 Subject: [PATCH 18/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- lxtask.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lxtask.spec b/lxtask.spec index 31a93bf..6dc2026 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -32,7 +32,7 @@ Name: lxtask Version: %{main_version}%{git_ver_rpm} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight and desktop independent task manager # SPDX confirmed @@ -131,6 +131,9 @@ cd .. %changelog +* Fri Jan 17 2025 Fedora Release Engineering - 0.1.11^20240905git6aaa2949-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Wed Oct 02 2024 Mamoru TASAKA - 0.1.11^20240905git6aaa2949-1 - Update to the latest git From 151e7b1e01311b83c08897901656cb0e65722727 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Thu, 27 Mar 2025 15:21:27 +0900 Subject: [PATCH 19/20] 0.1.12 --- lxtask.spec | 29 ++++++++++++++++++++++------- sources | 2 +- 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/lxtask.spec b/lxtask.spec index 6dc2026..b15d7de 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -13,26 +13,27 @@ %global git_builddir %{nil} %if 0%{?use_gitbare} -%global gittardate 20241002 -%global gittartime 2221 +%global gittardate 20250327 +%global gittartime 1511 +%define use_gitcommit_as_rel 0 -%global gitbaredate 20240905 -%global git_rev 6aaa2949c8caf63cda04ee4068fe389751aa1e7b +%global gitbaredate 20250325 +%global git_rev 33d3f23801089589e3e866fd43c4c96fd0b9d325 %global git_short %(echo %{git_rev} | cut -c-8) %global git_version %{gitbaredate}git%{git_short} %endif -%if 0%{?use_git} || 0%{?use_gitbare} +%if 0%{?use_gitcommit_as_rel} %global git_ver_rpm ^%{git_version} %global git_builddir -%{git_version} %endif -%global main_version 0.1.11 +%global main_version 0.1.12 Name: lxtask Version: %{main_version}%{git_ver_rpm} -Release: 2%{?dist} +Release: 1%{?dist} Summary: Lightweight and desktop independent task manager # SPDX confirmed @@ -77,6 +78,17 @@ git clone ./%{name}.git/ cd %{name} git checkout -b %{main_version}-fedora %{git_rev} + +# Restore timestamps +set +x +echo "Restore timestamps" +git ls-tree -r --name-only HEAD | while read f +do + unixtime=$(git log -n 1 --pretty='%ct' -- $f) + touch -d "@${unixtime}" $f +done +set -x + cp -a [A-Z]* .. %endif @@ -131,6 +143,9 @@ cd .. %changelog +* Thu Mar 27 2025 Mamoru TASAKA - 0.1.12-1 +- 0.1.12 + * Fri Jan 17 2025 Fedora Release Engineering - 0.1.11^20240905git6aaa2949-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild diff --git a/sources b/sources index a8f0a9c..d81a4d9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lxtask-20241002T2221.tar.gz) = 3a96af3a76f490d5d575021ec97cf02434b0ad89268ac7185471e2ad0bc3b46c1af58a0de5fba582c14c2eaba3148d5eac2a068ec820715fb3420e1c611c365a +SHA512 (lxtask-20250327T1511.tar.gz) = db3ceab603eedb7272880e99ccd084928ff5c418a8d06c4ad48a68b8113294e109d85f089156acf90107397968f7395b2485a5952a7dc64eeaf4f99663a62712 From c71c9982f33f13e05de76c44330c2aa9b901260f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 24 Jul 2025 21:08:34 +0000 Subject: [PATCH 20/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- lxtask.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lxtask.spec b/lxtask.spec index b15d7de..8cd0c25 100644 --- a/lxtask.spec +++ b/lxtask.spec @@ -33,7 +33,7 @@ Name: lxtask Version: %{main_version}%{git_ver_rpm} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight and desktop independent task manager # SPDX confirmed @@ -143,6 +143,9 @@ cd .. %changelog +* Thu Jul 24 2025 Fedora Release Engineering - 0.1.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Thu Mar 27 2025 Mamoru TASAKA - 0.1.12-1 - 0.1.12