packages: perl-JavaScript-Minifier/perl-JavaScript-Minifier.spec (NEW) - added

aredridel aredridel at pld-linux.org
Wed May 11 04:01:09 CEST 2011


Author: aredridel                    Date: Wed May 11 02:01:09 2011 GMT
Module: packages                      Tag: HEAD
---- Log message:
- added

---- Files affected:
packages/perl-JavaScript-Minifier:
   perl-JavaScript-Minifier.spec (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: packages/perl-JavaScript-Minifier/perl-JavaScript-Minifier.spec
diff -u /dev/null packages/perl-JavaScript-Minifier/perl-JavaScript-Minifier.spec:1.1
--- /dev/null	Wed May 11 04:01:09 2011
+++ packages/perl-JavaScript-Minifier/perl-JavaScript-Minifier.spec	Wed May 11 04:01:04 2011
@@ -0,0 +1,74 @@
+# $Revision$, $Date$
+#
+# Conditional build:
+%bcond_without	tests		# do not perform "make test"
+#
+%define		pdir	JavaScript
+%define		pnam	Minifier
+%include	/usr/lib/rpm/macros.perl
+Summary:	JavaScript::Minifier - Perl extension for minifying JavaScript code
+#Summary(pl.UTF-8):	
+Name:		perl-JavaScript-Minifier
+Version:	1.05
+Release:	1
+# same as perl
+License:	GPL v1+ or Artistic
+Group:		Development/Languages/Perl
+Source0:	http://www.cpan.org/modules/by-module/JavaScript/%{pdir}-%{pnam}-%{version}.tar.gz
+# Source0-md5:	14c1fa2fcf76c97de4d0fe0d8d7fc145
+# generic URL, check or change before uncommenting
+#URL:		http://search.cpan.org/dist/JavaScript-Minifier/
+BuildRequires:	perl-devel >= 1:5.8.0
+BuildRequires:	rpm-perlprov >= 4.1-13
+%if %{with tests}
+%endif
+BuildArch:	noarch
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This module removes unnecessary whitespace from JavaScript code. The primary requirement developing this module is to not break working code: if working JavaScript is in input then working JavaScript is output. It is ok if the input has missing semi-colons, snips like '++ +' or '12 .toString()', for example. Internet Explorer conditional comments are copied to the output but the code inside these comments will not be minified.
+
+The ECMAScript specifications allow for many different whitespace characters: space, horizontal tab, vertical tab, new line, carriage return, form feed, and paragraph separator. This module understands all of these as whitespace except for vertical tab and paragraph separator. These two types of whitespace are not minimized.
+
+For static JavaScript files, it is recommended that you minify during the build stage of web deployment. If you minify on-the-fly then it might be a good idea to cache the minified file. Minifying static files on-the-fly repeatedly is wasteful.
+
+
+
+
+# %description -l pl.UTF-8
+# TODO
+
+%prep
+%setup -q -n %{pdir}-%{pnam}-%{version}
+
+%build
+%{__perl} Makefile.PL \
+	INSTALLDIRS=vendor
+%{__make}
+
+%{?with_tests:%{__make} test}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} pure_install \
+	DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc Changes README
+%{perl_vendorlib}/JavaScript/*.pm
+%{_mandir}/man3/*
+
+%define	date	%(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1  2011/05/11 02:01:04  aredridel
+- added
+
================================================================


More information about the pld-cvs-commit mailing list