Compare commits
30 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f4b7834355 | |||
| de506b4767 | |||
|
|
ef27cc410f | ||
|
|
7e798710c7 | ||
|
|
7e5c95af30 | ||
|
|
e8d64e907c | ||
|
|
db4c666b7d | ||
|
|
007272248e | ||
| f3ce2989b3 | |||
| bf92766e4c | |||
|
|
0c17b1625b | ||
|
|
bfa615c48a | ||
|
|
d4aaa211c5 | ||
|
|
aa023b8b4e | ||
|
|
7923fe5640 | ||
|
|
b4de69ae50 | ||
|
|
b4e046a1f1 | ||
|
|
1f51a4c5e9 | ||
|
|
55d3e5fb96 | ||
|
|
59dd1f8ade | ||
| ad856fb560 | |||
|
|
2879d33b1b | ||
| 0ae3c1258b | |||
|
|
f10fcdcf1d | ||
|
|
c659d0334a | ||
| 238041f4e5 | |||
|
|
e218d0747a | ||
| 1d9d0ef89b | |||
|
|
8dbdc4621e | ||
|
|
23ff6960f0 |
3 changed files with 98 additions and 51 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -1,6 +1 @@
|
|||
tzclock-2.7.7.tar.bz2
|
||||
/tzclock-3.0.1.tar.bz2
|
||||
/tzclock-3.0.2.tar.bz2
|
||||
/tzclock-3.0.3.tar.bz2
|
||||
/tzclock-3.0.5.tar.bz2
|
||||
/tzclock-3.0.6.tar.bz2
|
||||
/tzclock-*.tar.bz2
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
1a1a9096ef8137217c0edda728a2b64b tzclock-3.0.6.tar.bz2
|
||||
SHA512 (tzclock-4.9.tar.bz2) = 846793d9fe9eaeb82caea2086faea14d072f1800b2953852a585e76dff195d8340659b4ffc04c5f9a1d93d3fc19a00592b2d217b0eed014c24465b603b9b7e74
|
||||
|
|
|
|||
138
tzclock.spec
138
tzclock.spec
|
|
@ -1,22 +1,26 @@
|
|||
Name: tzclock
|
||||
Version: 3.0.6
|
||||
Release: 3%{?dist}
|
||||
Version: 4.9
|
||||
Release: 1%{?dist}
|
||||
Summary: GTK+ graphical Clock displaying the time around the world
|
||||
|
||||
Group: Amusements/Graphics
|
||||
License: GPLv2
|
||||
URL: http://www.tzclock.org/
|
||||
Source0: http://www.tzclock.org/releases/source/%{name}-%{version}.tar.bz2
|
||||
# SPDX confirmed
|
||||
License: GPL-2.0-only
|
||||
URL: https://theknight.co.uk/
|
||||
Source0: http://theknight.co.uk/releases/Source/%{name}-%{version}.tar.bz2
|
||||
|
||||
BuildRequires: gtk3-devel
|
||||
BuildRequires: libnotify-devel
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
BuildRequires: pkgconfig(gtk+-3.0)
|
||||
BuildRequires: pkgconfig(libnotify)
|
||||
BuildRequires: pkgconfig(dial)
|
||||
BuildRequires: /usr/bin/appstream-util
|
||||
BuildRequires: desktop-file-utils
|
||||
|
||||
%description
|
||||
TzClock is an X Window GTK+ graphical Clock that can display
|
||||
the time around the world. It supports multiple faces showing
|
||||
different time zones.
|
||||
There is a stopwatch funtion that is accurate to a tenth of a second,
|
||||
There is a stopwatch function that is accurate to a tenth of a second,
|
||||
plus there are many other nice features for you to discover.
|
||||
|
||||
%prep
|
||||
|
|
@ -24,57 +28,105 @@ plus there are many other nice features for you to discover.
|
|||
|
||||
sed -i.suffix \
|
||||
-e 's|^Icon=.*|Icon=tzclock|' \
|
||||
TzClock.desktop
|
||||
%{name}.desktop
|
||||
|
||||
%build
|
||||
%configure
|
||||
%make_build -k
|
||||
%{__make} %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%{__make} install \
|
||||
INSTALL="%{__install} -p" \
|
||||
DESTDIR=$RPM_BUILD_ROOT
|
||||
%make_install
|
||||
|
||||
desktop-file-install \
|
||||
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
|
||||
--delete-original \
|
||||
$RPM_BUILD_ROOT%{_datadir}/applications/TzClock.desktop
|
||||
|
||||
# I like lower case!
|
||||
%{__ln_s} -f TzClock $RPM_BUILD_ROOT%{_bindir}/%{name}
|
||||
%{__ln_s} -f TzClock.1 $RPM_BUILD_ROOT%{_mandir}/man1/%{name}.1
|
||||
|
||||
# Not needed
|
||||
%{__rm} -f $RPM_BUILD_ROOT%{_bindir}/screenSize
|
||||
|
||||
%post
|
||||
touch --no-create %{_datadir}/icons/hicolor/
|
||||
exit 0
|
||||
|
||||
%postun
|
||||
[ "$1" -eq 0 ] || exit 0
|
||||
|
||||
touch --no-create %{_datadir}/icons/hicolor/
|
||||
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor
|
||||
exit 0
|
||||
|
||||
%posttrans
|
||||
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor
|
||||
exit 0
|
||||
%check
|
||||
desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS
|
||||
%doc COPYING
|
||||
%license COPYING
|
||||
|
||||
%{_bindir}/*
|
||||
%{_datadir}/appdata/%{name}.appdata.xml
|
||||
%{_metainfodir}/*.metainfo.xml
|
||||
%{_datadir}/icons/hicolor/*/*/tzclock*
|
||||
%{_datadir}/applications/*desktop
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
|
||||
%{_mandir}/man1/*
|
||||
%{_mandir}/man1/%{name}.1*
|
||||
|
||||
%changelog
|
||||
* Thu Aug 20 2026 Mamoru TASAKA <mtasaka@fedoraproject.org> - 4.9-1
|
||||
- 4.9
|
||||
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Dec 30 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.1.7-13
|
||||
- SPDX migration
|
||||
|
||||
* Sat Jul 22 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.1.7-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Tue Feb 13 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.1.7-1
|
||||
- 3.1.7
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.0.6-6
|
||||
- Remove obsolete scriptlets
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue