Compare commits
86 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
28025182bf | ||
|
|
bfaa12a3d3 | ||
|
|
7f106925b0 | ||
|
|
4eee63a939 | ||
|
|
6740f8b6b5 | ||
|
|
74556da21c | ||
|
|
dad4d3efad | ||
|
|
4532f4b6c9 | ||
|
|
54f1123e5e | ||
|
|
d3249f30eb | ||
|
|
a9302eba3a | ||
|
|
a4f1fc3c76 | ||
|
|
16d13dbdfa | ||
|
|
0ccc36e0f2 | ||
|
|
90d5a8c386 | ||
|
|
053f49cace | ||
|
|
5613d76a2d | ||
|
|
924bf3c4e2 | ||
|
|
10526dd068 | ||
|
|
42505de945 | ||
|
|
bd0046f02b | ||
|
|
02001fdb73 | ||
|
|
9f0b81de27 | ||
|
|
0862add733 | ||
|
|
7b1a385b15 | ||
|
|
17035863ae | ||
|
|
c8a18d35ac | ||
|
|
4464b450fc | ||
|
|
b0c175433a | ||
|
|
a907dc5adf | ||
|
|
122e7de373 | ||
|
|
7a690b5f3c | ||
|
|
ae203e2636 | ||
|
|
866bdd7110 | ||
|
|
d0588422e1 | ||
|
|
a836abb6e0 | ||
|
|
f5ac8f5dfd | ||
|
|
0e6791431c | ||
|
|
28f423d0c1 | ||
| 895c80e05f | |||
|
eaaaa7a2c5 |
|||
|
|
dccf9472cc | ||
|
|
11d49e4f61 | ||
|
|
2347773da5 | ||
|
|
a0be16ac68 | ||
|
|
95f6519be2 | ||
|
|
a33514116f | ||
|
|
9452804beb | ||
|
|
74292b05f0 | ||
|
|
0794302c47 | ||
|
|
98a8926a73 | ||
|
|
d8d0fa9b65 | ||
|
|
f7e2efba11 | ||
|
|
3b7b9b9ef1 | ||
|
|
56ad48ee70 | ||
|
|
23bb8f95cb | ||
|
|
3d885cfb65 | ||
|
|
d69cae3b1d | ||
|
|
504a9e2b28 | ||
|
|
e36fe77c99 | ||
|
|
a41f61232a | ||
|
|
2f8bd0c036 | ||
|
|
1137a9d541 | ||
|
|
592e25e285 | ||
|
|
50ae8e91a1 | ||
|
|
479cfcf159 | ||
|
|
624f7a7192 | ||
|
|
a9019cd892 | ||
|
|
b617b78c48 | ||
|
|
d8ee2c129c | ||
|
|
9076e68ae9 | ||
|
|
f5949047dc | ||
|
|
b48be3f23d | ||
|
|
73157e6e9a | ||
|
|
23d4be7c0e | ||
|
|
cc5c54e1ea | ||
|
|
8a4d59f8ca | ||
|
|
7e75799a20 | ||
|
|
61475b9321 | ||
|
|
706da8f171 | ||
|
|
68d3f7e8ea | ||
|
|
e4f67a4c26 | ||
|
|
9059b75352 | ||
|
|
d8cdd66b1d | ||
|
|
270f557111 | ||
|
|
e9476632c3 |
6 changed files with 107 additions and 38 deletions
19
.gitignore
vendored
19
.gitignore
vendored
|
|
@ -1,4 +1,23 @@
|
|||
shutter-0.86.2.tar.gz
|
||||
/shutter-0.86.4.tar.gz
|
||||
/shutter-0.87.2.tar.gz
|
||||
/shutter-0.87.3.tar.gz
|
||||
/shutter-0.89.tar.gz
|
||||
/shutter-0.89.1.tar.gz
|
||||
/shutter-0.90.tar.gz
|
||||
/shutter-0.90.1.tar.gz
|
||||
/shutter-0.91.tar.gz
|
||||
/shutter-0.93.tar.gz
|
||||
/shutter-0.93.1.tar.gz
|
||||
/shutter-0.94.3.tar.gz
|
||||
/shutter-0.98.tar.gz
|
||||
/shutter-0.99.tar.gz
|
||||
/shutter-0.99.1.tar.gz
|
||||
/shutter-0.99.2.tar.gz
|
||||
/shutter-b089b93.tar.gz
|
||||
/shutter-0.99.3.tar.gz
|
||||
/shutter-0.99.4.tar.gz
|
||||
/shutter-0.99.5.tar.gz
|
||||
/shutter-66c21b2.tar.gz
|
||||
/shutter-0.99.6.tar.gz
|
||||
/shutter-21d0da3.tar.gz
|
||||
|
|
|
|||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: shutter
|
||||
# $Id$
|
||||
NAME := shutter
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
11
shutter-appdata.patch
Normal file
11
shutter-appdata.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- share/appdata/shutter.appdata.xml.orig 2022-07-22 12:39:10.485167885 +0200
|
||||
+++ share/appdata/shutter.appdata.xml 2022-07-22 12:39:26.389109257 +0200
|
||||
@@ -3,7 +3,7 @@
|
||||
<id>org.shutterproject.shutter</id>
|
||||
<launchable type="desktop-id">shutter.desktop</launchable>
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
- <license>GPL-3.0+</license>
|
||||
+ <project_license>GPL-3.0+</project_license>
|
||||
<description>
|
||||
<p>
|
||||
Shutter is a feature-rich screenshot program. You can take a screenshot of a
|
||||
92
shutter.spec
92
shutter.spec
|
|
@ -1,27 +1,29 @@
|
|||
# For git snapshots, set to 0 to use release instead:
|
||||
%global usesnapshot 0
|
||||
%global usesnapshot 1
|
||||
%if 0%{?usesnapshot}
|
||||
%global commit0 01d8563a9b7453fa069da2c448e53b5eeff8592e
|
||||
%global commit0 21d0da3bd0e0b256cdfec83099fee87fbb62405f
|
||||
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
||||
%global snapshottag .git%{shortcommit0}
|
||||
%endif
|
||||
|
||||
Name: shutter
|
||||
Version: 0.99.2
|
||||
%if 0%{?usesnapshot}
|
||||
Release: 0.1%{?snapshottag}%{?dist}
|
||||
Version: 0.99.7
|
||||
Release: 0.2%{?snapshottag}%{?dist}
|
||||
%else
|
||||
Release: 1%{?dist}
|
||||
Version: 0.99.6
|
||||
Release: 4%{?dist}
|
||||
%endif
|
||||
Summary: GTK+3-based screenshot application written in Perl
|
||||
|
||||
Summary: GTK+3-based screenshot application written in Perl
|
||||
# share/shutter/resources/icons/draw.svg packaged is CC-BY-SA
|
||||
# share/shutter/resources/system/plugins/perl/spwatermark/spwatermark.svg is Public Domain
|
||||
# share/shutter/resources/po/shutter/zh_TW.po is MIT (same as gscrot <https://github.com/gscrot/gscrot/blob/master/LICENSE.md>)
|
||||
# share/shutter/resources/icons/drawing_tool/objects/tux.svg is GPLv2
|
||||
# share/shutter/resources/icons/drawing_tool/cursor files are GPLv2+
|
||||
# share/appdata/shutter.appdata.xml is CC0
|
||||
License: GPLv3+ and GPLv2+ and GPLv2 and CC-BY-SA and MIT and CC0 and Public Domain
|
||||
# Automatically converted from old format: GPLv3+ and GPLv2+ and GPLv2 and CC-BY-SA and MIT and CC0 and Public Domain - review is highly recommended.
|
||||
License: GPL-3.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only AND LicenseRef-Callaway-CC-BY-SA AND LicenseRef-Callaway-MIT AND CC0-1.0 AND LicenseRef-Callaway-Public-Domain
|
||||
URL: https://shutter-project.org/
|
||||
%if 0%{?usesnapshot}
|
||||
Source0: https://github.com/shutter-project/shutter/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz
|
||||
|
|
@ -49,7 +51,10 @@ Requires: hicolor-icon-theme
|
|||
Requires: libwnck3
|
||||
Requires: perl(Image::ExifTool)
|
||||
Requires: perl(Goo::Canvas)
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
%if 0%{?fedora} >= 41
|
||||
Requires: gdk-pixbuf2-modules-extra
|
||||
%endif
|
||||
|
||||
|
||||
# Filter all provides
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/resources/system/upload_plugins
|
||||
|
|
@ -71,7 +76,6 @@ window. Shutter is free, open-source, and licensed under GPL v3.
|
|||
%endif
|
||||
# Remove the bundled perl(X11::Protocol::Ext::XFIXES)
|
||||
rm -vr share/%{name}/resources/modules/X11
|
||||
rm -vr share/%{name}/resources/modules/WebService
|
||||
|
||||
%build
|
||||
./po2mo.sh
|
||||
|
|
@ -96,11 +100,6 @@ chmod 0644 %{buildroot}%{_datadir}/%{name}/resources/system/upload_plugins/uploa
|
|||
|
||||
%find_lang %{name} --all-name
|
||||
|
||||
# Install AppData
|
||||
mkdir -p %{buildroot}%{_metainfodir}/
|
||||
cp share/appdata/shutter.appdata.xml %{buildroot}%{_metainfodir}/shutter.appdata.xml
|
||||
rm %{buildroot}/%{_datadir}/appdata/shutter.appdata.xml
|
||||
|
||||
# Symlink duplicated files
|
||||
rm %{buildroot}%{_datadir}/icons/HighContrast/scalable/apps/shutter-panel.svg
|
||||
ln -s %{_datadir}/icons/HighContrast/scalable/apps/shutter.svg %{buildroot}%{_datadir}/icons/HighContrast/scalable/apps/shutter-panel.svg
|
||||
|
|
@ -124,7 +123,7 @@ ln -s %{_datadir}/icons/Tango/scalable %{buildroot}/%{_datadir}/shutter/resource
|
|||
|
||||
%check
|
||||
desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/%{name}.appdata.xml
|
||||
appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/%{name}.metainfo.xml
|
||||
|
||||
%files -f %{name}.lang
|
||||
%doc CHANGES README
|
||||
|
|
@ -132,7 +131,7 @@ appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/%{name}.appda
|
|||
%license %{_datadir}/%{name}/resources/license/*
|
||||
%{_bindir}/%{name}
|
||||
%{perl_vendorlib}/Shutter/
|
||||
%{_metainfodir}/%{name}.appdata.xml
|
||||
%{_metainfodir}/%{name}.metainfo.xml
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/%{name}
|
||||
%{_mandir}/man1/%{name}*
|
||||
|
|
@ -141,6 +140,67 @@ appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/%{name}.appda
|
|||
%{_datadir}/icons/HighContrast/
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.99.7-0.2.git21d0da3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Apr 25 2026 Martin Gansser <martinkg@fedoraproject.org> - 0.99.7-0.1.git21d0da3
|
||||
- Update to 0.99.7-0.1.git21d0da3
|
||||
- Fixed .xpm cursor files to work with new glycin version
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.99.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.99.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Fri Jun 06 2025 Martin Gansser <martinkg@fedoraproject.org> - 0.99.6-1
|
||||
- Update to 0.99.6-1
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.99.6-0.3.git66c21b2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Wed Nov 06 2024 Martin Gansser <martinkg@fedoraproject.org> - 0.99.6-0.2.git66c21b2
|
||||
- Add RR gdk-pixbuf2-modules-extra fix bug (#2323682)
|
||||
|
||||
* Thu Oct 31 2024 Martin Gansser <martinkg@fedoraproject.org> - 0.99.6-0.1.git66c21b2
|
||||
- Update to 0.99.6-0.1.git66c21b2
|
||||
|
||||
* Wed Sep 04 2024 Miroslav Suchý <msuchy@redhat.com> - 0.99.5-3
|
||||
- convert license to SPDX
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.99.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Apr 27 2024 Martin Gansser <martinkg@fedoraproject.org> - 0.99.5-1
|
||||
- Update to 0.99.5-1
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.99.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.99.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Mar 25 2023 Martin Gansser <martinkg@fedoraproject.org> - 0.99.4-1
|
||||
- Update to 0.99.4-1
|
||||
|
||||
* Mon Mar 06 2023 Martin Gansser <martinkg@fedoraproject.org> - 0.99.3-1
|
||||
- Update to 0.99.3-1
|
||||
|
||||
* Fri Mar 03 2023 Martin Gansser <martinkg@fedoraproject.org> - 0.99.3-0.1.gitb089b93
|
||||
- Update to 0.99.3-0.1.gitb089b93
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.99.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Fri Jul 22 2022 Martin Gansser <martinkg@fedoraproject.org> - 0.99.2-4
|
||||
- Add %%{name}-appdata.patch to fix invalid tag in xml file (BZ#2109819)
|
||||
|
||||
* Mon May 30 2022 Jitka Plesnikova <jplesnik@redhat.com> - 0.99.2-3
|
||||
- Perl 5.36 rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.99.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Tue Oct 26 2021 Martin Gansser <martinkg@fedoraproject.org> - 0.99.2-1
|
||||
- Update to 0.99.2-1
|
||||
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (shutter-0.99.2.tar.gz) = 5fcb094f0e6f732da3648e58ef62aa1e5537132ffb0bff80972e1891f58fe5e63ec63bc7bec63e84268c095e3cd43d60d358be61e2d050dfcc49ffb042d34cfb
|
||||
SHA512 (shutter-21d0da3.tar.gz) = 8431eea3b2316078baa7cd0423dba54575aa65b12e6aa946b3dfbbca61ddc230382d3d1ae14ff81aa8ae7895c405f0297bfd03617f6099e6328d6b6eeb9ace76
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue