From c87e1de0178ed61a8fe1e4cbbc02e19130014d96 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 25 Aug 2009 17:56:10 -0400 Subject: Rename Laconica to StatusNet --- scripts/laconica.spec | 98 -------------------------------------------------- scripts/statusnet.spec | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+), 98 deletions(-) delete mode 100644 scripts/laconica.spec create mode 100644 scripts/statusnet.spec (limited to 'scripts') diff --git a/scripts/laconica.spec b/scripts/laconica.spec deleted file mode 100644 index 331e10671..000000000 --- a/scripts/laconica.spec +++ /dev/null @@ -1,98 +0,0 @@ -# This version needs to match the tarball and unpacked directory name. -%define LACVER 0.7.3 - -BuildRequires: php-pear -BuildRequires: httpd-devel - -Name: laconica -Version: %{LACVER} -Release: 1%{?dist} -License: GAGPL v3 or later -Source: laconica-%{version}.tar.gz -Group: Applications/Internet -Summary: Laconica, the Open Source microblogging platform -BuildArch: noarch - -Requires: httpd -Requires: php >= 5 -Requires: php-pear-Mail-Mime -Requires: php-curl -Requires: php-mysql -Requires: php-mbstring -Requires: php-gettext -Requires: php-xml -Requires: php-gd - -BuildRoot: %{_tmppath}/%{name}-%{version}-build - -%define apache_serverroot %(/usr/sbin/apxs -q DATADIR) -%define apache_sysconfdir %(/usr/sbin/apxs -q SYSCONFDIR) -%define wwwpath %{apache_serverroot}/%{name} -%define confpath %{_sysconfdir}/%{name} - -%description -From the ABOUT file: Laconica (pronounced "luh-KAWN-ih-kuh") is a Free -and Open Source microblogging platform. It helps people in a -community, company or group to exchange short (140 character) messages -over the Web. Users can choose which people to "follow" and receive -only their friends' or colleagues' status messages. It provides a -similar service to sites like Twitter, Jaiku, and Plurk. - - -%prep -%setup -q - -%build - - -%install -mkdir -p %{buildroot}%{wwwpath} -cp -a * %{buildroot}%{wwwpath} - -mkdir -p %{buildroot}%{_datadir}/laconica -cp -a db %{buildroot}%{_datadir}/laconica/db - -mkdir -p %{buildroot}%{_datadir}/laconica/avatar - -mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d -cat > %{buildroot}%{_sysconfdir}/httpd/conf.d/laconica.conf <<"EOF" -Alias /laconica/ "/var/www/laconica/" - - - Options Indexes FollowSymLinks - AllowOverride All - Order allow,deny - Allow from all - -EOF - -%clean -rm -rf %buildroot - -%files -%defattr(-,root,root) -%dir %{wwwpath} -%{wwwpath}/* -%{_datadir}/laconica/* -%attr(-,apache,apache) %dir %{_datadir}/laconica/avatar -%doc COPYING README doc-src/* -%config(noreplace) %{_sysconfdir}/httpd/conf.d/laconica.conf - -%changelog -* Wed Apr 03 2009 Zach Copley - 0.7.3 -- Changed version number to 0.7.3. - -* Fri Mar 13 2009 Ken Sedgwick - 0.7.2.1-1 -- Factored laconica version to the first line of the file. - -* Wed Mar 03 2009 Zach Copley - 0.7.2 -- Changed version number to 0.7.2. - -* Sat Feb 28 2009 Ken Sedgwick - 0.7.1-1 -- Modified RPM for Fedora. - -* Thu Feb 13 2009 tuukka.pasanen@ilmi.fi -- packaged laconica version 0.7.1 - -* Wed Feb 04 2009 tuukka.pasanen@ilmi.fi -- packaged laconica version 0.7.0 using the buildservice spec file wizard diff --git a/scripts/statusnet.spec b/scripts/statusnet.spec new file mode 100644 index 000000000..331e10671 --- /dev/null +++ b/scripts/statusnet.spec @@ -0,0 +1,98 @@ +# This version needs to match the tarball and unpacked directory name. +%define LACVER 0.7.3 + +BuildRequires: php-pear +BuildRequires: httpd-devel + +Name: laconica +Version: %{LACVER} +Release: 1%{?dist} +License: GAGPL v3 or later +Source: laconica-%{version}.tar.gz +Group: Applications/Internet +Summary: Laconica, the Open Source microblogging platform +BuildArch: noarch + +Requires: httpd +Requires: php >= 5 +Requires: php-pear-Mail-Mime +Requires: php-curl +Requires: php-mysql +Requires: php-mbstring +Requires: php-gettext +Requires: php-xml +Requires: php-gd + +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%define apache_serverroot %(/usr/sbin/apxs -q DATADIR) +%define apache_sysconfdir %(/usr/sbin/apxs -q SYSCONFDIR) +%define wwwpath %{apache_serverroot}/%{name} +%define confpath %{_sysconfdir}/%{name} + +%description +From the ABOUT file: Laconica (pronounced "luh-KAWN-ih-kuh") is a Free +and Open Source microblogging platform. It helps people in a +community, company or group to exchange short (140 character) messages +over the Web. Users can choose which people to "follow" and receive +only their friends' or colleagues' status messages. It provides a +similar service to sites like Twitter, Jaiku, and Plurk. + + +%prep +%setup -q + +%build + + +%install +mkdir -p %{buildroot}%{wwwpath} +cp -a * %{buildroot}%{wwwpath} + +mkdir -p %{buildroot}%{_datadir}/laconica +cp -a db %{buildroot}%{_datadir}/laconica/db + +mkdir -p %{buildroot}%{_datadir}/laconica/avatar + +mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d +cat > %{buildroot}%{_sysconfdir}/httpd/conf.d/laconica.conf <<"EOF" +Alias /laconica/ "/var/www/laconica/" + + + Options Indexes FollowSymLinks + AllowOverride All + Order allow,deny + Allow from all + +EOF + +%clean +rm -rf %buildroot + +%files +%defattr(-,root,root) +%dir %{wwwpath} +%{wwwpath}/* +%{_datadir}/laconica/* +%attr(-,apache,apache) %dir %{_datadir}/laconica/avatar +%doc COPYING README doc-src/* +%config(noreplace) %{_sysconfdir}/httpd/conf.d/laconica.conf + +%changelog +* Wed Apr 03 2009 Zach Copley - 0.7.3 +- Changed version number to 0.7.3. + +* Fri Mar 13 2009 Ken Sedgwick - 0.7.2.1-1 +- Factored laconica version to the first line of the file. + +* Wed Mar 03 2009 Zach Copley - 0.7.2 +- Changed version number to 0.7.2. + +* Sat Feb 28 2009 Ken Sedgwick - 0.7.1-1 +- Modified RPM for Fedora. + +* Thu Feb 13 2009 tuukka.pasanen@ilmi.fi +- packaged laconica version 0.7.1 + +* Wed Feb 04 2009 tuukka.pasanen@ilmi.fi +- packaged laconica version 0.7.0 using the buildservice spec file wizard -- cgit v1.2.3-54-g00ecf