[packages/js-zeroclipboard] new, version 2.2.0

glen glen at pld-linux.org
Fri Jan 23 16:26:45 CET 2015


commit 9a4c382dd892877dda2fef8dc10eca425a37c9d1
Author: Elan Ruusamäe <glen at delfi.ee>
Date:   Fri Jan 23 17:25:49 2015 +0200

    new, version 2.2.0

 apache.conf           | 13 +++++++++
 js-zeroclipboard.spec | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++
 lighttpd.conf         |  3 ++
 3 files changed, 95 insertions(+)
---
diff --git a/js-zeroclipboard.spec b/js-zeroclipboard.spec
new file mode 100644
index 0000000..20ab936
--- /dev/null
+++ b/js-zeroclipboard.spec
@@ -0,0 +1,79 @@
+%define		pkgname	zeroclipboard
+Summary:	Copy to clipboard HTML browser
+Name:		js-%{pkgname}
+Version:	2.2.0
+Release:	1
+License:	MIT
+Group:		Applications/WWW
+Source0:	https://github.com/zeroclipboard/zeroclipboard/archive/v%{version}/%{pkgname}-%{version}.tar.gz
+# Source0-md5:	74be02c6583a27abae640f4ddecc60b5
+Source1:	apache.conf
+Source2:	lighttpd.conf
+URL:		http://zeroclipboard.org/
+BuildRequires:	rpmbuild(macros) >= 1.553
+Requires:	webserver(access)
+Requires:	webserver(alias)
+BuildArch:	noarch
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define		_webapps	/etc/webapps
+%define		_webapp		%{name}
+%define		_sysconfdir	%{_webapps}/%{_webapp}
+%define		_appdir		%{_datadir}/%{_webapp}
+
+%description
+The ZeroClipboard library provides an easy way to copy text to the
+clipboard using an invisible Adobe Flash movie and a JavaScript
+interface.
+
+The "Zero" signifies that the library is invisible and the user
+interface is left entirely up to you.
+
+%prep
+%setup -qn %{pkgname}-%{version}
+
+mv dist/ZeroClipboard{,.src}.js
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_appdir}
+cp -a dist/* $RPM_BUILD_ROOT%{_appdir}
+ln -s ZeroClipboard.min.js $RPM_BUILD_ROOT%{_appdir}/ZeroClipboard.js
+
+install -d $RPM_BUILD_ROOT%{_sysconfdir}
+cp -p %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/apache.conf
+cp -p %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/lighttpd.conf
+cp -p $RPM_BUILD_ROOT%{_sysconfdir}/{apache,httpd}.conf
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%triggerin -- apache1 < 1.3.37-3, apache1-base
+%webapp_register apache %{_webapp}
+
+%triggerun -- apache1 < 1.3.37-3, apache1-base
+%webapp_unregister apache %{_webapp}
+
+%triggerin -- apache < 2.2.0, apache-base
+%webapp_register httpd %{_webapp}
+
+%triggerun -- apache < 2.2.0, apache-base
+%webapp_unregister httpd %{_webapp}
+
+%triggerin -- lighttpd
+%webapp_register lighttpd %{_webapp}
+
+%triggerun -- lighttpd
+%webapp_unregister lighttpd %{_webapp}
+
+%files
+%defattr(644,root,root,755)
+%doc README.md CONTRIBUTING.md LICENSE docs/*.md
+%dir %attr(750,root,http) %{_sysconfdir}
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/apache.conf
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/httpd.conf
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/lighttpd.conf
+%dir %{_appdir}
+%{_appdir}/ZeroClipboard*.js
+%{_appdir}/ZeroClipboard*.min.map
+%{_appdir}/ZeroClipboard.swf
diff --git a/apache.conf b/apache.conf
new file mode 100644
index 0000000..1f80526
--- /dev/null
+++ b/apache.conf
@@ -0,0 +1,13 @@
+Alias /js/zeroclipboard/ /usr/share/js-zeroclipboard/
+<Directory /usr/share/js-zeroclipboard>
+	# Apache 2.x
+	<IfModule !mod_authz_core.c>
+		Order allow,deny
+		Allow from all
+	</IfModule>
+	# Apache 2.4
+	<IfModule mod_authz_core.c>
+		Require all granted
+	</IfModule>
+	Options +FollowSymLinks
+</Directory>
diff --git a/lighttpd.conf b/lighttpd.conf
new file mode 100644
index 0000000..88da5d9
--- /dev/null
+++ b/lighttpd.conf
@@ -0,0 +1,3 @@
+alias.url += (
+    "/js/zeroclipboard/" => "/usr/share/js-zeroclipboard/",
+)
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/js-zeroclipboard.git/commitdiff/9a4c382dd892877dda2fef8dc10eca425a37c9d1



More information about the pld-cvs-commit mailing list