Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
c404ab1174
!25 fix spec changelog date
From: @leeffo 
Reviewed-by: @dwl301 
Signed-off-by: @dwl301
2022-12-26 02:52:17 +00:00
mylee
827744ac98 fix changelog date and update license 2022-06-14 10:34:02 +08:00
openeuler-ci-bot
263fa7b58d
!14 解决eog在22.03-next-lts分支编译失败chrpath: command not found
Merge pull request !14 from penelope/openEuler-22.03-LTS-Next
2022-01-11 12:30:29 +00:00
penelope
f4f5559f00 l 2022-01-11 17:19:41 +08:00
openeuler-ci-bot
81349a811b !10 remove rpath
From: @caodongxia
Reviewed-by: @dwl301
Signed-off-by: @dwl301
2021-09-09 07:44:25 +00:00
caodongxia
6acaedb512 remove rpath 2021-09-09 15:29:16 +08:00
openeuler-ci-bot
20d1670e52 !9 Upgrade to 3.38.3
From: @weijin-deng
Reviewed-by: @dwl301
Signed-off-by: @dwl301
2021-06-11 09:33:37 +00:00
weijin-deng
34a05de860 Upgrade to 3.38.3
Update Version, Release, Source0, BuildRequires
Temporaryly disable libportal, because there isn't in cunrrent community
2021-06-11 17:25:27 +08:00
openeuler-ci-bot
28a938095e !4 Use python3-dogtail to replace python-dogtail
From: @wang_yue111
Reviewed-by: @miao_kaibo
Signed-off-by: @miao_kaibo
2020-09-11 21:23:49 +08:00
wang_yue111
0d39d27f39 Use python3-dogtail to replace python-dogtail 2020-09-11 18:34:14 +08:00
3 changed files with 39 additions and 10 deletions

Binary file not shown.

BIN
eog-3.38.3.tar.xz Normal file

Binary file not shown.

View File

@ -1,15 +1,17 @@
Name: eog
Version: 3.28.4
Release: 2
Version: 3.38.3
Release: 4
Summary: A GNOME Image Viewer
License: GPLv2+ and GFDL
License: GPLv2+ and GFDL-1.1-or-later
URL: https://wiki.gnome.org/Apps/EyeOfGnome
Source0: http://download.gnome.org/sources/%{name}/3.28/%{name}-%{version}.tar.xz
Requires: gsettings-desktop-schemas glib2 >= 2.42.0 gtk3 >= 3.22.0
BuildRequires: pkgconfig(exempi-2.0) pkgconfig(gdk-pixbuf-2.0) pkgconfig(glib-2.0) >= 2.42.0 pkgconfig(gnome-desktop-3.0) >= 2.91.2
Source0: http://download.gnome.org/sources/%{name}/3.38/%{name}-%{version}.tar.xz
Requires: gsettings-desktop-schemas glib2 >= 2.53.0 gtk3 >= 3.22.0
BuildRequires: pkgconfig(exempi-2.0) pkgconfig(gdk-pixbuf-2.0) pkgconfig(glib-2.0) >= 2.53.0 pkgconfig(gnome-desktop-3.0) >= 2.91.2
BuildRequires: pkgconfig(gobject-introspection-1.0) pkgconfig(gsettings-desktop-schemas) pkgconfig(gtk+-3.0) >= 3.22.0 pkgconfig(lcms2)
BuildRequires: pkgconfig(libexif) >= 0.6.14 pkgconfig(libpeas-1.0) >= 0.7.4 pkgconfig(libpeas-gtk-1.0) >= 0.7.4 pkgconfig(librsvg-2.0)
BuildRequires: pkgconfig(shared-mime-info) pkgconfig(x11) desktop-file-utils gettext gtk-doc itstool libjpeg-devel meson zlib-devel libappstream-glib
BuildRequires: chrpath
#BuildRequires: pkgconfig(libportal)
%description
EOG is an application used for viewing and cataloging image files on the
@ -25,7 +27,7 @@ Development files for eog.
%package tests
Summary: Usability test of the eog package
Requires: %{name} = %{version}-%{release}
Requires: dogtail python3-behave
Requires: python3-dogtail python3-behave
%description tests
The tests package can be used to verify the Usability of the eog package.
@ -34,27 +36,37 @@ The tests package can be used to verify the Usability of the eog package.
%autosetup -n %{name}-%{version} -p1
%build
%meson -Dgtk_doc=true -Dinstalled_tests=true
%meson -Dgtk_doc=true -Dinstalled_tests=true -Dlibportal=false
%meson_build
%install
%meson_install
%find_lang %{name} --with-gnome
chrpath -d %{buildroot}/%{_bindir}/%{name}
mkdir -p %{buildroot}/etc/ld.so.conf.d
echo "%{_libdir}/%{name}" > %{buildroot}/etc/ld.so.conf.d/%{name}-%{_arch}.conf
%post
/sbin/ldconfig
%postun
/sbin/ldconfig
%check
appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*.appdata.xml
desktop-file-validate %{buildroot}/%{_datadir}/applications/eog.desktop
desktop-file-validate %{buildroot}/%{_datadir}/applications/org.gnome.eog.desktop
%files -f %{name}.lang
%doc AUTHORS NEWS README COPYING
%{_datadir}/eog
%{_datadir}/applications/eog.desktop
%{_datadir}/applications/org.gnome.eog.desktop
%{_datadir}/icons/hicolor/*/apps/*
%{_bindir}/*
%{_libdir}/eog
%{_datadir}/GConf/gsettings/eog.convert
%{_datadir}/glib-2.0/schemas/*
%{_datadir}/metainfo/eog.appdata.xml
%config(noreplace) /etc/ld.so.conf.d/*
%files devel
%{_includedir}/eog-3.0
@ -67,5 +79,22 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/eog.desktop
%{_datadir}/installed-tests/
%changelog
* Mon May 16 2022 loong_C <loong_c@yeah.net> - 3.38.3-4
- update eog.spec
* Tue Jan 11 2022 yangping <yangping69@huawei.com> - 3.38.3-3
- fix chrpath command not found
* Thu Sep 9 2021 caodongxia <caodongxia@huawei.com> - 3.38.3-2
- Remove rpath
* Mon Jun 7 2021 weijin deng <weijin.deng@turbolinux.com.cn> - 3.38.3-1
- Upgrade to 3.38.3
- Update Version, Release, Source0, BuildRequires
- Temporaryly disable libportal, because there isn't in cunrrent community
* Fri Sep 11 2020 wangyue<wangyue92@huawei.com> - 3.28.4-3
- Use python3-dogtail to replace python-dogtail
* Fri Nov 22 2019 gulining<gulining1@huawei.com> - 3.28.4-2
- Pakcage init