initial build
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-VimColor?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
Text-VimColor-0.11.tar.gz
Normal file
3
Text-VimColor-0.11.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:daea9dcdd1ad3d5c18c843e13f1508540e5bc838a908e59a4e90bfd1ce9a52fa
|
||||||
|
size 20375
|
85
perl-Text-VimColor.spec
Normal file
85
perl-Text-VimColor.spec
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
Name: perl-Text-VimColor
|
||||||
|
Version: 0.11
|
||||||
|
Release: 0
|
||||||
|
Summary: Perl Module to syntax color Text in HTML or XML using Vim
|
||||||
|
Source: http://search.cpan.org/CPAN/authors/id/G/GE/GEOFFR/Text-VimColor-%{version}.tar.gz
|
||||||
|
URL: http://search.cpan.org/dist/Text-VimColor/
|
||||||
|
Group: Development/Libraries/Perl
|
||||||
|
License: Perl License
|
||||||
|
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
||||||
|
Requires: perl perl-Path-Class
|
||||||
|
Requires: vim vim-data
|
||||||
|
BuildRequires: make perl perl-Path-Class
|
||||||
|
|
||||||
|
%description
|
||||||
|
This module tries to markup text files according to their syntax. It can be
|
||||||
|
used to produce web pages with pretty-printed colourful source code samples.
|
||||||
|
|
||||||
|
Note that this package only contains the Perl modules. To use Text::VimColor
|
||||||
|
from the command-line, install the additional package "text-vimcolor".
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Geoff Richards <qef@laxan.com>
|
||||||
|
|
||||||
|
%package -n text-vimcolor
|
||||||
|
Summary: Syntax Color Text in HTML or XML using Vim
|
||||||
|
Group: Development/Tools/Doc Generators
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description -n text-vimcolor
|
||||||
|
The text-vimcolor command-line program tries to markup text files according to
|
||||||
|
their syntax. It can be used to produce web pages with pretty-printed
|
||||||
|
colourful source code samples.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Geoff Richards <qef@laxan.com>
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n "Text-VimColor-%{version}"
|
||||||
|
%__sed -i '/^auto_install/d' Makefile.PL
|
||||||
|
|
||||||
|
%build
|
||||||
|
%__perl Makefile.PL PREFIX="%{_prefix}"
|
||||||
|
%__make
|
||||||
|
|
||||||
|
%install
|
||||||
|
%perl_make_install
|
||||||
|
%perl_process_packlist
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc ChangeLog README
|
||||||
|
%dir %{perl_vendorlib}/Text
|
||||||
|
%{perl_vendorlib}/Text/VimColor
|
||||||
|
%{perl_vendorlib}/Text/VimColor.pm
|
||||||
|
%dir %{perl_vendorarch}/auto/Text
|
||||||
|
%{perl_vendorarch}/auto/Text/VimColor
|
||||||
|
%doc %{perl_man3dir}/Text::VimColor.%{perl_man3ext}*
|
||||||
|
/var/adm/perl-modules/%{name}
|
||||||
|
|
||||||
|
%files -n text-vimcolor
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/text-vimcolor
|
||||||
|
%doc %{_mandir}/man1/text-vimcolor.1*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sun Mar 15 2009 Pascal Bleser <pascal.bleser@opensuse.org> 0.11
|
||||||
|
- new package
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: rpm-spec
|
||||||
|
# tab-width: 3
|
||||||
|
# End:
|
Reference in New Issue
Block a user