initial commit of file from CVS for php-pear-Date-Holidays-Slovenia on Fri 14 Jul 16:10:29 BST 2023

master 0.1.2
Brian Read 10 months ago
parent 9d9f139db4
commit b69a9398a9

1
.gitattributes vendored

@ -0,0 +1 @@
*.tgz filter=lfs diff=lfs merge=lfs -text

3
.gitignore vendored

@ -0,0 +1,3 @@
*.rpm
*.log
*spec-20*

BIN
Date_Holidays_Slovenia-0.1.2.tgz (Stored with Git LFS)

Binary file not shown.

@ -0,0 +1,21 @@
# Makefile for source rpm: php-pear-Date-Holidays-Slovenia
# $Id: Makefile,v 1.1 2016/06/16 12:41:27 unnilennium Exp $
NAME := php-pear-Date-Holidays-Slovenia
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)

@ -1,3 +1,11 @@
# php-pear-Date-Holidays-Slovenia
3rd Party (Maintained by Koozali) git repo for php-pear-Date-Holidays-Slovenia smeserver
3rd Party (Maintained by Koozali) git repo for php-pear-Date-Holidays-Slovenia 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 />
php-pear-Date_Holidays_Slovenia is a software package that provides information about Slovenian holidays and special days to applications written in the PHP programming language. The package contains an array of dates for holidays and special days and a way to check if a given date is a holiday or special day. It also provides a way to get the name of the holiday or special day for a given date, as well as the corresponding Slovenian name.

@ -0,0 +1 @@
sme10

@ -0,0 +1,101 @@
%define peardir %(pear config-get php_dir 2> /dev/null || echo %{_datadir}/pear)
%define xmldir /var/lib/pear
%global pear_name Date_Holidays_Slovenia
%define name php-pear-Date-Holidays-Slovenia
%define version 0.1.2
%define release 2
Name: %{name}
Version: %{version}
Release: %{release}%{?dist}
Summary: Driver based class to calculate holidays in Slovenia
License: PHP License
Group: Development/Libraries
Source0: http://pear.php.net/get/Date_Holidays_Slovenia-%{version}.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n)
URL: http://pear.php.net/package/Date_Holidays_Slovenia
BuildRequires: php-pear(PEAR) >= 1.4.7
Requires: php-pear(Date_Holidays) >= 0.18.0
Requires: php-pear(PEAR) >= 1.4.0b1
Provides: php-pear(%{pear_name}) = %{version}
#BuildRequires: PEAR::PEAR >= 1.4.7
#Requires: PEAR::Date_Holidays >= 0.18.0
#Requires: PEAR::PEAR >= 1.4.0b1
BuildArch: noarch
%description
Date_Holidays helps you calculate the dates and titles of holidays and
other special celebrations. This is the driver for calculating holidays in
Slovenia.
%prep
%setup -c -T
pear -v -c pearrc \
-d php_dir=%{peardir} \
-d doc_dir=/docs \
-d bin_dir=%{_bindir} \
-d data_dir=%{peardir}/data \
-d test_dir=%{peardir}/tests \
-d ext_dir=%{_libdir} \
-s
%build
%install
rm -rf %{buildroot}
pear -c pearrc install --nodeps --packagingroot %{buildroot} %{SOURCE0}
# Clean up unnecessary files
rm pearrc
rm -rf %{buildroot}/%{peardir}/.filemap
rm -rf %{buildroot}/%{peardir}/.lock
rm -rf %{buildroot}/%{peardir}/.registry
rm -rf %{buildroot}%{peardir}/.channels
rm -rf %{buildroot}/%{xmldir}/.filemap
rm -rf %{buildroot}/%{xmldir}/.lock
rm -rf %{buildroot}/%{xmldir}/.registry
rm -rf %{buildroot}/%{xmldir}/.channels
if [[ -f %{buildroot}%{xmldir}/.depdb ]] ;then
rm -rf %{buildroot}%{xmldir}/.depdb
fi
if [[ -f %{buildroot}{xmldir}/.depdblock ]] ;then
rm -rf %{buildroot}%{xmldir}/.depdblock
fi
# Install XML package description
mkdir -p %{buildroot}%{xmldir}
tar -xzf %{SOURCE0} package.xml
cp -p package.xml %{buildroot}%{xmldir}/Date_Holidays_Slovenia.xml
%clean
rm -rf %{buildroot}
%post
pear install --nodeps --soft --force --register-only %{xmldir}/Date_Holidays_Slovenia.xml >/dev/null || :
%postun
if [ "$1" -eq "0" ]; then
pear uninstall --nodeps --ignore-errors --register-only pear.php.net/Date_Holidays_Slovenia >/dev/null || :
fi
%files
%defattr(-,root,root)
%{peardir}/*
%{xmldir}/Date_Holidays_Slovenia.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.
* Thu Jun 16 2016 Jean-Philipe Pialasse <tests@pialasse.com> 0.1.2-2.sme
- importing to buildsys pear packages for Horde [SME: 9600]
* Mon Jul 22 2013 John H. Bennett III <bennettj@johnbennettservices.com> - 0.1.2-1
- Original from pear-make-rpm-spec.
Loading…
Cancel
Save