Compare commits

..

No commits in common. "rawhide" and "f32" have entirely different histories.

6 changed files with 79 additions and 1 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/vim-pathogen-0.20181213gite9fb091.tar.gz
/vim-pathogen-2.4.20190625gitc6bc424.tar.gz

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# vim-pathogen
The vim-pathogen package

View file

@ -1 +0,0 @@
Orphaned for 6+ weeks

1
sources Normal file
View file

@ -0,0 +1 @@
SHA512 (vim-pathogen-2.4.20190625gitc6bc424.tar.gz) = 7e2db23db288dcd9bb1a74cc3c459999cc97eee88992cf530007ba1edd67cfd0a1612795b68e2e09a2ba0c45f549d7e89fe015dc3e81ac790ca0c07135f2a934

12
vim-pathogen.metainfo.xml Normal file
View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2019 Artem Polishchuk <ego.cordatus@gmail.com> -->
<component type="addon">
<id>vim-pathogen</id>
<extends>gvim.desktop</extends>
<name>vim-pathogen</name>
<summary>Manage your runtimepath</summary>
<url type="homepage">https://github.com/tpope/vim-pathogen</url>
<metadata_license>CC0-1.0</metadata_license>
<project_license>Vim</project_license>
<updatecontact>ego.cordatus@gmail.com</updatecontact>
</component>

61
vim-pathogen.spec Normal file
View file

@ -0,0 +1,61 @@
%global commit c6bc42404597c718e4a032a98e21e63321cbb05a
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global date 20190625
Name: vim-pathogen
Version: 2.4
Release: 1.%{date}git%{shortcommit}%{?dist}
Summary: Manage your runtimepath
License: Vim
URL: https://github.com/tpope/vim-pathogen
Source0: %{url}/archive/%{commit}/%{name}-%{version}.%{date}git%{shortcommit}.tar.gz
Source1: %{name}.metainfo.xml
BuildArch: noarch
BuildRequires: libappstream-glib
BuildRequires: vim-filesystem
Requires: vim-enhanced
%description
Manage your 'runtimepath' with ease. In practical terms, pathogen.vim makes it
super easy to install plugins and runtime files in their own private
directories.
For new users, I recommend using Vim's built-in package management instead:
:help packages
%prep
%autosetup -n %{name}-%{commit} -p1
%install
mkdir -p %{buildroot}%{vimfiles_root}
cp -r autoload %{buildroot}%{vimfiles_root}
install -m 0644 -Dp %{SOURCE1} %{buildroot}%{_metainfodir}/%{name}.metainfo.xml
%check
appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml
%files
%license LICENSE
%doc README.markdown CONTRIBUTING.markdown
%{vimfiles_root}/autoload/*
%{_metainfodir}/*.xml
%changelog
* Sat May 23 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 2.4-1.20190625gitc6bc424
- Update to latest git snapshot
- Add license file
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0-3.20181213gite9fb091
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Oct 03 2019 Artem Polishchuk <ego.cordatus@gmail.com> - 0-2.20181213gite9fb091
- Initial package