initial commit of file from CVS for turba-h3 on Fri 14 Jul 22:34:18 BST 2023
This commit is contained in:
parent
f755b9f7b6
commit
a15a7d22a2
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
||||
*.tar.gz filter=lfs diff=lfs merge=lfs -text
|
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*.rpm
|
||||
*.log
|
||||
*spec-20*
|
21
Makefile
Normal file
21
Makefile
Normal file
@ -0,0 +1,21 @@
|
||||
# Makefile for source rpm: turba-h3
|
||||
# $Id: Makefile,v 1.1 2016/02/04 18:11:16 vip-ire Exp $
|
||||
NAME := turba-h3
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
10
README.md
10
README.md
@ -1,3 +1,11 @@
|
||||
# turba-h3
|
||||
|
||||
3rd Party (Maintained by Koozali) git repo for turba-h3 smeserver
|
||||
3rd Party (Maintained by Koozali) git repo for turba-h3 smeserver
|
||||
|
||||
## Description
|
||||
|
||||
<br />*This description has been generated by an LLM AI system and cannot be relied on to be fully correct.*
|
||||
*Once it has been checked, then this comment will be deleted*
|
||||
<br />
|
||||
|
||||
Turba-H3 is a software package designed to help users organize and manage their contact data. It can be used to store contact information such as address, phone number, email address, and notes for each contact. Turba-H3 also allows users to search through their contacts with advanced filters, and it can be used to sync the contact data with external sources like Outlook or Apple Address Book.
|
||||
|
1
contriborbase
Normal file
1
contriborbase
Normal file
@ -0,0 +1 @@
|
||||
sme10
|
BIN
turba-h3-2.3.5.tar.gz
(Stored with Git LFS)
Normal file
BIN
turba-h3-2.3.5.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
115
turba-h3.spec
Normal file
115
turba-h3.spec
Normal file
@ -0,0 +1,115 @@
|
||||
# $Id: turba-h3.spec,v 1.1 2016/02/04 18:11:16 vip-ire Exp $
|
||||
|
||||
%define apachedir /etc/httpd
|
||||
%define apacheuser www
|
||||
%define apachegroup www
|
||||
%define contentdir /home/httpd
|
||||
|
||||
Summary: The Horde contact management application.
|
||||
Name: turba-h3
|
||||
Version: 2.3.5
|
||||
Release: 1%{?dist}
|
||||
License: GPL
|
||||
Group: Applications/Horde
|
||||
Source: ftp://ftp.horde.org/pub/turba/tarballs/turba-h3-%{version}.tar.gz
|
||||
URL: http://www.horde.org/
|
||||
BuildArchitectures: noarch
|
||||
BuildRoot: /tmp/turba-root
|
||||
AutoReq: no
|
||||
Requires: php >= 4.3.0
|
||||
Requires: httpd >= 2.0.46
|
||||
Requires: horde >= 3.2
|
||||
Requires: mysql >= 3.23
|
||||
Prereq: /usr/bin/perl
|
||||
Obsoletes: turba
|
||||
Provides: turba
|
||||
|
||||
%description
|
||||
Turba is the Horde contact management application, which allows access
|
||||
to and storage of personal contacts (including name, email address,
|
||||
phone number, and other easily customizable fields). Turba integrates
|
||||
with IMP (Horde's webmail application) as its address book.
|
||||
|
||||
The Horde Project writes web applications in PHP and releases them under
|
||||
Open Source licenses. For more information (including help with Turba)
|
||||
please visit http://www.horde.org/.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
||||
mkdir -p $RPM_BUILD_ROOT%{apachedir}/conf
|
||||
mkdir -p $RPM_BUILD_ROOT%{contentdir}/html/horde/turba
|
||||
cp -pR * $RPM_BUILD_ROOT%{contentdir}/html/horde/turba
|
||||
cd $RPM_BUILD_ROOT%{contentdir}/html/horde/turba/config
|
||||
for d in *.dist; do
|
||||
d0=`basename $d .dist`
|
||||
if [ ! -f "$d0" ]; then
|
||||
cp -p $d $d0
|
||||
fi
|
||||
done
|
||||
|
||||
%clean
|
||||
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
# Include top level with %dir so not all files are sucked in
|
||||
%dir %{contentdir}/html/horde/turba
|
||||
# Include top-level files by hand
|
||||
%{contentdir}/html/horde/turba/*.php
|
||||
# Include these dirs so that all files _will_ get sucked in
|
||||
%{contentdir}/html/horde/turba/lib
|
||||
%{contentdir}/html/horde/turba/locale
|
||||
%{contentdir}/html/horde/turba/po
|
||||
%{contentdir}/html/horde/turba/scripts
|
||||
%{contentdir}/html/horde/turba/templates
|
||||
%{contentdir}/html/horde/turba/themes
|
||||
%{contentdir}/html/horde/turba/js
|
||||
%{contentdir}/html/horde/turba/addressbooks
|
||||
# Mark documentation files with %doc and %docdir
|
||||
%doc %{contentdir}/html/horde/turba/LICENSE
|
||||
%doc %{contentdir}/html/horde/turba/README
|
||||
%docdir %{contentdir}/html/horde/turba/docs
|
||||
%{contentdir}/html/horde/turba/docs
|
||||
# Mark configuration files with %config and use secure permissions
|
||||
# (note that .dist files are considered software; don't mark %config)
|
||||
%attr(750,root,%{apachegroup}) %dir %{contentdir}/html/horde/turba/config
|
||||
%defattr(640,root,%{apachegroup})
|
||||
%{contentdir}/html/horde/turba/config/.htaccess
|
||||
%{contentdir}/html/horde/turba/config/*.dist
|
||||
%config %{contentdir}/html/horde/turba/config/*.php
|
||||
%config %{contentdir}/html/horde/turba/config/*.xml
|
||||
|
||||
%changelog
|
||||
* Fri Jul 14 2023 BogusDateBot
|
||||
- Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
|
||||
by assuming the date is correct and changing the weekday.
|
||||
|
||||
* Sun Nov 07 2010 John H. Bennett III <bennettj@johnbennettservices.com> 2.3.5-1
|
||||
- Updated to Turba 2.3.5 [SME: 6351]
|
||||
|
||||
* Mon May 10 2010 John H. Bennett III <bennettj@johnbennettservices.com> 2.3.4-1
|
||||
- Updated to Turba 2.3.4 [SME: 5939]
|
||||
|
||||
* Sat Feb 13 2010 John H. Bennett III <bennettj@johnbennettservices.com> 2.3.3-1
|
||||
- Updated to Turba 2.3.3 [SME: 5778]
|
||||
|
||||
* Tue Oct 13 2009 John H. Bennett III <bennettj@johnbennettservices.com> 2.3.2-1
|
||||
- Updated to Turba 2.3.2 [SME: 5512]
|
||||
|
||||
* Fri Jan 2 2009 John H. Bennett III <bennettj@johnbennettservices.com> 2.3.1-1
|
||||
- Updated to Turba 2.3.1 [SME: 4833]
|
||||
|
||||
* Sat Dec 06 2008 John H. Bennett III <bennettj@johnbennettservices.com> 2.3-1
|
||||
- Updated to Turba 2.3 [SME: 4833]
|
||||
|
||||
* Wed Jun 18 2008 John H. Bennett III <bennettj@johnbennettservices.com> 2.2.1-1
|
||||
- Update to Turba 2.2.1
|
||||
|
||||
* Mon Jun 2 2008 John H. Bennett III <bennettj@johnbennettservices.com> 2.2-1
|
||||
- initial RPM roll for Turba 2.2
|
||||
|
Loading…
Reference in New Issue
Block a user