1 |
# $Id: smeserver-webshare.spec,v 1.1 2017/03/02 23:35:16 unnilennium Exp $ |
2 |
# Authority: darrellmay |
3 |
# Name: Darrell May |
4 |
|
5 |
Summary: Webshare addon for SME Server |
6 |
%define name smeserver-webshare |
7 |
Name: %{name} |
8 |
%define version 1.0.0 |
9 |
%define release 12 |
10 |
Version: %{version} |
11 |
Release: %{release}%{?dist} |
12 |
License: GPL |
13 |
Group: SME Server/addon |
14 |
Source: %{name}-%{version}.tar.gz |
15 |
BuildRoot: /var/tmp/%{name}-%{version} |
16 |
BuildArchitectures: noarch |
17 |
Requires: e-smith-base, perl-Apache-Htpasswd, perl-Crypt-PasswdMD5 |
18 |
BuildRequires: e-smith-devtools >= 1.13.1-03 |
19 |
AutoReqProv: no |
20 |
Obsoletes: devinfo-mitel-webshare dmc-mitel-webshare |
21 |
|
22 |
Patch1: smeserver-webshare-sme8_fixes.patch |
23 |
Patch2: smeserver-webshare-1.0.0-sme8bis.patch |
24 |
|
25 |
%changelog |
26 |
* Thu Mar 02 2017 Jean-Philipe Pialasse <tests@pialasse.com> 1.0.0-12.sme |
27 |
- imported to SME9 [SME: 10129] |
28 |
|
29 |
* Sat May 25 2013 JP Pialasse <tests@piaalsse.com> - 1.0.0-11.sme |
30 |
- fix spacename problem with firefox [SME: 6256] |
31 |
- fix password limited to 7 digits [SME: 7097] |
32 |
- fix biggest error message for incorrect password [SME: 3601] |
33 |
|
34 |
* Wed Oct 12 2011 Greg Swallow <greg@runlevel7.ca> - 1.0.0-10.sme |
35 |
- Patch for added SME8 compatibility |
36 |
- should fix [SME 3600], [SME 6256], [SME 6454] |
37 |
|
38 |
* Mon Apr 21 2008 Shad L. Lords <slords@mail.com> |
39 |
- Prep for import into buildsys |
40 |
- Clean up spec |
41 |
|
42 |
* Fri Dec 1 2006 Darrell May <dmay@myezserver.com> |
43 |
- move htpasswd files to /home/e-smith/db/webshare |
44 |
- ugraders must run: /etc/e-smith/events/actions/webshare-rebuild-htpasswd; signal-event ibay-modify |
45 |
- [1.0.0-8] |
46 |
* Thu Oct 12 2006 Darrell May <dmay@myezserver.com> |
47 |
- updated httpd.conf fragment for SME 7 compliance |
48 |
- Note: rewrite for full SME 7 support is still needed |
49 |
- [1.0.0-7] |
50 |
* Mon Jan 30 2006 Darrell May <dmay@myezserver.com> |
51 |
- bugfix to support IE/https file downloads |
52 |
- added to /incl/libfile.php 'header("Pragma:");' |
53 |
- [1.0.0-6] |
54 |
* Tue May 17 2005 Darrell May <dmay@myezserver.com> |
55 |
- added support for numeric project names |
56 |
- [1.0.0-5] |
57 |
* Tue May 17 2005 Darrell May <dmay@myezserver.com> |
58 |
- update to phpfm-0.2.3 |
59 |
- added NoDelete webshare create/config option |
60 |
- [1.0.0-4] |
61 |
* Thu May 12 2005 Darrell May <dmay@myezserver.com> |
62 |
- bugfix webshare panel for SME 7.x |
63 |
- [1.0.0-3] |
64 |
* Fri Apr 22 2005 Darrell May <dmay@myezserver.com> |
65 |
- added support for SME 7.x |
66 |
- [1.0.0-2] |
67 |
* Sun Feb 08 2004 Darrell May <dmay@myezserver.com> |
68 |
- repackaged for SME Server 6.x |
69 |
- [1.0.0-1] |
70 |
* Sun Jan 12 2003 Darrell May <dmay@myezserver.com> |
71 |
- added Requires: perl-Apache-Htpasswd |
72 |
- [0.0.1-5] |
73 |
* Sat Jan 11 2003 Darrell May <dmay@myezserver.com> |
74 |
- name change obsolete devinfo-mitel-webshare |
75 |
- updated webshare panel |
76 |
- updated webshare-tools to use phpfm |
77 |
- [0.0.1-4] |
78 |
* Fri May 10 2002 Darrell May <dmay@myezserver.com> |
79 |
- updated webshare panel |
80 |
- updated webshare-tools scripts |
81 |
- original public release |
82 |
- [0.0.1-3] |
83 |
* Thu May 09 2002 Darrell May <dmay@myezserver.com> |
84 |
- added httpd.conf template and updated action scripts |
85 |
- incorporated index.php from ruffdogs,com |
86 |
- incorporate webshare panel and action scripts from Jon Blakely |
87 |
- [0.0.1-2] |
88 |
* Sun May 05 2002 Darrell May <dmay@myezserver.com> |
89 |
- initial release |
90 |
- [0.0.1-1] |
91 |
|
92 |
%description |
93 |
%name is an addon for SME Server that provides secure web accessible file and directory storage. |
94 |
|
95 |
%prep |
96 |
%setup |
97 |
%patch1 -p1 |
98 |
%patch2 -p1 |
99 |
|
100 |
%build |
101 |
perl createlinks |
102 |
|
103 |
%install |
104 |
rm -rf $RPM_BUILD_ROOT |
105 |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
106 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist |
107 |
|
108 |
%clean |
109 |
/bin/rm -rf $RPM_BUILD_ROOT |
110 |
|
111 |
%files -f %{name}-%{version}-filelist |
112 |
%defattr(-,root,root) |