2014-02-20 09:33:47 +00:00
committed by Git OBS Bridge
commit 022d0381ce
5 changed files with 156 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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
View File

@@ -0,0 +1 @@
.osc

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a43601f70b28eef1ee99e7175efcb8925bc40b21d48b3b9ddd61f69513babca3
size 30221

View File

@@ -0,0 +1,60 @@
-------------------------------------------------------------------
Fri Nov 18 11:08:37 UTC 2011 - coolo@suse.com
- use original .tar.gz
-------------------------------------------------------------------
Wed Dec 1 13:32:53 UTC 2010 - coolo@novell.com
- switch to perl_requires macro
-------------------------------------------------------------------
Mon Nov 29 18:30:12 UTC 2010 - coolo@novell.com
- remove /var/adm/perl-modules
-------------------------------------------------------------------
Sun Jan 10 15:43:32 CET 2010 - jengelh@medozas.de
- enable parallel build
-------------------------------------------------------------------
Wed Jan 25 21:39:45 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Fri Jan 6 12:40:13 CET 2006 - anicka@suse.cz
- update to 0.05
-------------------------------------------------------------------
Sun Jan 11 13:03:29 CET 2004 - adrian@suse.de
- build as user
-------------------------------------------------------------------
Fri Aug 22 14:57:10 CEST 2003 - mjancar@suse.cz
- require the perl version we build with
-------------------------------------------------------------------
Fri Jul 18 15:17:21 CEST 2003 - mmj@suse.de
- Fix filelist
-------------------------------------------------------------------
Sun Jun 22 22:17:20 CEST 2003 - coolo@suse.de
- package directories
-------------------------------------------------------------------
Mon May 19 14:23:35 CEST 2003 - freitag@suse.de
- removed perllocal.pod out off the build system
-------------------------------------------------------------------
Fri Jun 8 11:44:08 CEST 2001 - freitag@suse.de
- new package with version 0.04

View File

@@ -0,0 +1,69 @@
#
# spec file for package perl-HTML-Template-JIT
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: perl-HTML-Template-JIT
BuildRequires: perl-HTML-Template perl-Inline-C
BuildRequires: perl-macros
Url: http://www.cpan.org/modules/by-module/HTML
License: GPLv2+
Group: Development/Libraries/Perl
AutoReqProv: on
Summary: Just-In-Time Compiler for HTML Templates
Version: 0.05
Release: 143
Source: HTML-Template-JIT-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
%description
This is a just in time compiler for the HTML Template module. Makes the
use of templates very fast.
Authors:
--------
Sam Tregar <sam@tregar.com>
%prep
%setup -n HTML-Template-JIT-%{version}
# ---------------------------------------------------------------------------
%build
perl Makefile.PL
make %{?_smp_mflags}
# ---------------------------------------------------------------------------
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install_vendor
%perl_process_packlist
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc %{_mandir}/man?/*
%{perl_vendorarch}/auto/HTML/Template/JIT*
%{perl_vendorlib}/HTML/Template
%doc ANNOUNCE ARTISTIC Changes GPL MANIFEST README
%changelog