Compare commits
No commits in common. "rawhide" and "f42" have entirely different histories.
2 changed files with 17 additions and 32 deletions
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (xed-3.8.9.tar.gz) = bd72b1b4f41ecd352366cf193ebfbdd49f6bcdd8f0b347adc91c25ad1cc315cff8b13956dee51a43754cd81e508f06b2a592da2276bdb8f2ef43a12c516ea76d
|
||||
SHA512 (xed-3.8.4.tar.gz) = f443803ea07f5d35f9c1925dac76037750df9b9135c32746b8e0ef175c6b75ebcd92f5853bc94ced1f52a01d0a1f3c57a3ae1a58cb45a8ca98464459dbca8b2b
|
||||
|
|
|
|||
47
xed.spec
47
xed.spec
|
|
@ -1,9 +1,10 @@
|
|||
# Filter provides from plugins.
|
||||
%global __provides_exclude_from ^%{_libdir}/%{name}/plugins/.*$
|
||||
|
||||
|
||||
Name: xed
|
||||
Version: 3.8.9
|
||||
Release: 4%{?dist}
|
||||
Version: 3.8.4
|
||||
Release: 1%{?dist}
|
||||
Summary: X-Apps [Text] Editor (Cross-DE, backward-compatible, GTK3, traditional UI)
|
||||
|
||||
# Automatically converted from old format: GPLv2+ - review is highly recommended.
|
||||
|
|
@ -17,8 +18,6 @@ BuildRequires: meson
|
|||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: gettext
|
||||
BuildRequires: gnome-common
|
||||
# Required for meson's gnome.generate_gir
|
||||
BuildRequires: gobject-introspection-devel
|
||||
BuildRequires: gtk-doc
|
||||
BuildRequires: intltool
|
||||
BuildRequires: libappstream-glib
|
||||
|
|
@ -28,17 +27,15 @@ BuildRequires: pkgconfig(gtk+-3.0)
|
|||
BuildRequires: pkgconfig(gtksourceview-4)
|
||||
BuildRequires: pkgconfig(libpeas-gtk-1.0)
|
||||
BuildRequires: pkgconfig(libxml-2.0)
|
||||
BuildRequires: python3-gobject-devel
|
||||
BuildRequires: pkgconfig(iso-codes)
|
||||
BuildRequires: python3-gobject-base
|
||||
BuildRequires: pkgconfig(sm)
|
||||
BuildRequires: pkgconfig(xapp) >= 1.4.0
|
||||
BuildRequires: python%{python3_pkgversion}-devel
|
||||
|
||||
Requires: iso-codes
|
||||
Requires: libpeas1-loader-python3%{?_isa}
|
||||
Requires: python%{python3_pkgversion}-gobject%{?_isa}
|
||||
Requires: xapps%{?_isa}
|
||||
Requires: xapp-symbolic-icons
|
||||
Suggests: hunspell-en
|
||||
|
||||
%description
|
||||
|
|
@ -51,6 +48,7 @@ Xed is extensible through a plugin system, which currently includes
|
|||
support for spell checking, comparing files, viewing CVS ChangeLogs, and
|
||||
adjusting indentation levels.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Files needed to develop plugins for %{name}
|
||||
Requires: %{name}%{?_isa} == %{version}-%{release}
|
||||
|
|
@ -58,6 +56,7 @@ Requires: %{name}%{?_isa} == %{version}-%{release}
|
|||
%description devel
|
||||
This package contains files needed to develop plugins for %{name}.
|
||||
|
||||
|
||||
%package doc
|
||||
Summary: Documentation files for %{name}
|
||||
BuildArch: noarch
|
||||
|
|
@ -65,8 +64,9 @@ BuildArch: noarch
|
|||
%description doc
|
||||
This package contains the documentation files for %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%autosetup -p 1
|
||||
|
||||
# Use 'classic'-theme by default.
|
||||
%{__sed} -i -e 's!xed!classic!g' data/org.x.editor.gschema.xml.in
|
||||
|
|
@ -81,6 +81,7 @@ This package contains the documentation files for %{name}.
|
|||
-Ddeprecated_warnings=false
|
||||
%meson_build
|
||||
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
%{__sed} -i -e '/.*<project_group>.*/d' \
|
||||
|
|
@ -88,10 +89,11 @@ This package contains the documentation files for %{name}.
|
|||
|
||||
%if 0%{?fedora} > 42
|
||||
# libpeas is broken
|
||||
#rm -rf %{buildroot}%{_libdir}/%{name}/plugins/{bracket-complete,joinlines*,open-uri-context-menu,textsize*}
|
||||
rm -rf %{buildroot}%{_libdir}/%{name}/plugins/{bracket-complete,joinlines*,open-uri-context-menu,textsize*}
|
||||
%endif
|
||||
|
||||
%find_lang %{name} --with-gnome
|
||||
%find_lang %{name} --with-gnome
|
||||
|
||||
|
||||
%check
|
||||
# Validate desktop-files.
|
||||
|
|
@ -102,6 +104,7 @@ This package contains the documentation files for %{name}.
|
|||
%{_bindir}/appstream-util validate-relax --nonet \
|
||||
%{buildroot}%{_metainfodir}/org.x.editor.metainfo.xml
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%license AUTHORS COPYING debian/copyright
|
||||
%doc ChangeLog README.md debian/changelog
|
||||
|
|
@ -117,38 +120,20 @@ This package contains the documentation files for %{name}.
|
|||
%{_libdir}/%{name}/
|
||||
%{_mandir}/man1/%{name}.1*
|
||||
|
||||
|
||||
%files devel
|
||||
%{_datadir}/%{name}/gir-1.0
|
||||
%{_includedir}/%{name}/
|
||||
%{_libdir}/pkgconfig/%{name}.pc
|
||||
|
||||
|
||||
%files doc
|
||||
%license %{_datadir}/licenses/%{name}*
|
||||
%doc %{_datadir}/doc/%{name}*
|
||||
%doc %{_datadir}/gtk-doc/*
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Aug 26 2026 Leigh Scott <leigh123linux@gmail.com> - 3.8.9-4
|
||||
- Add requires xapp-symbolic-icons
|
||||
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.9-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jan 09 2026 Leigh Scott <leigh123linux@gmail.com> - 3.8.9-1
|
||||
- Update to 3.8.9
|
||||
|
||||
* Sat Dec 13 2025 Leigh Scott <leigh123linux@gmail.com> - 3.8.7-1
|
||||
- Update to 3.8.7
|
||||
|
||||
* Fri Dec 12 2025 Leigh Scott <leigh123linux@gmail.com> - 3.8.6-1
|
||||
- Update to 3.8.6
|
||||
|
||||
* Wed Sep 10 2025 Leigh Scott <leigh123linux@gmail.com> - 3.8.4-2
|
||||
- Rebuild for libpeas1 changes
|
||||
|
||||
* Sat Sep 06 2025 Leigh Scott <leigh123linux@gmail.com> - 3.8.4-1
|
||||
- Update to 3.8.4
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue