initial commit of file from CVS for flexbackup on Fri 14 Jul 13:47:50 BST 2023
This commit is contained in:
parent
4348175076
commit
89a107f44a
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: flexbackup
|
||||||
|
# $Id: Makefile,v 1.1 2016/02/04 12:35:15 vip-ire Exp $
|
||||||
|
NAME := flexbackup
|
||||||
|
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 @@
|
|||||||
# flexbackup
|
# flexbackup
|
||||||
|
|
||||||
3rd Party (Maintained by Koozali) git repo for flexbackup smeserver
|
3rd Party (Maintained by Koozali) git repo for flexbackup 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 />
|
||||||
|
|
||||||
|
FlexBackup is a software package designed to automate the process of backing up and restoring files, directories, and databases. It is written in Perl and works on a variety of platforms including Linux, Mac OSX, FreeBSD, and Solaris. FlexBackup provides powerful features such as incremental backups, full/incremental restores, and differential backups. It also supports a wide range of backup media including FTP, NFS, CD-R/RW, DVD-R/RW, and tape devices. FlexBackup is designed to make backups easy and reliable, and to reduce the time spent managing backups.
|
||||||
|
1
contriborbase
Normal file
1
contriborbase
Normal file
@ -0,0 +1 @@
|
|||||||
|
sme10
|
102
flexbackup.spec
Normal file
102
flexbackup.spec
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
%define version 1.2.1
|
||||||
|
%define deb_release 6.4
|
||||||
|
|
||||||
|
Summary: Flexible backup script
|
||||||
|
Name: flexbackup
|
||||||
|
Version: %{version}
|
||||||
|
Release: %{deb_release}.2%{?dist}
|
||||||
|
Epoch: 0
|
||||||
|
License: GPL
|
||||||
|
Group: Applications/Archiving
|
||||||
|
URL: http://www.edwinh.org/flexbackup/
|
||||||
|
Source0: flexbackup-%{version}-%{deb_release}.tar.gz
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
||||||
|
BuildArch: noarch
|
||||||
|
Requires: gzip
|
||||||
|
Requires: fileutils
|
||||||
|
Requires: findutils
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------
|
||||||
|
%description
|
||||||
|
A flexible backup tool
|
||||||
|
|
||||||
|
Features:
|
||||||
|
o Easy to configure
|
||||||
|
o Uses dump, afio, GNU tar, cpio, star, pax, or zip archivers
|
||||||
|
o Full and numbered levels of incremental backup (acts like "dump")
|
||||||
|
o Compression and buffering options for all backup types
|
||||||
|
o Does remote filesystems (over rsh/ssh; no special service)
|
||||||
|
o Can backup only files not owned by rpm, or changed from rpm version
|
||||||
|
o Writes to tapes, on-disk archive files, or on-disk directory trees
|
||||||
|
o Keeps a table of contents so you know archives are on each tape
|
||||||
|
o Nice log files
|
||||||
|
|
||||||
|
(debian version : https://packages.debian.org/buster/flexbackup)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------
|
||||||
|
%prep
|
||||||
|
%setup -q -n flexbackup-%{version}-%{deb_release}
|
||||||
|
|
||||||
|
%install
|
||||||
|
/bin/rm -rf $RPM_BUILD_ROOT
|
||||||
|
(/usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT)
|
||||||
|
|
||||||
|
%clean
|
||||||
|
/bin/rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
/etc/flexbackup.conf
|
||||||
|
/usr/bin/flexbackup
|
||||||
|
/usr/share/*
|
||||||
|
%dir /var/lib/flexbackup
|
||||||
|
%dir /var/log/flexbackup
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------
|
||||||
|
%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.
|
||||||
|
|
||||||
|
* Sat May 15 2021 Michel Begue <mab974@gmail.com> 1.2.1-6.4.2.sme
|
||||||
|
- fix package version and release 1.2.1-6.4
|
||||||
|
|
||||||
|
* Sun Mar 28 2021 Michel Begue <mab974@gmail.com> 1.2.1.64-1.sme
|
||||||
|
- new source from debian packages repos 1.2.1-6.4
|
||||||
|
- convert initial release
|
||||||
|
- remove /usr/share/lintian directory
|
||||||
|
- add convert script to doc directory
|
||||||
|
- add debian changelog to doc directory
|
||||||
|
|
||||||
|
* Sun Apr 29 2007 Shad L. Lords <slords@mail.com>
|
||||||
|
- Clean up spec so package can be built by koji/plague
|
||||||
|
|
||||||
|
* Thu Dec 07 2006 Shad L. Lords <slords@mail.com>
|
||||||
|
- Update to new release naming. No functional changes.
|
||||||
|
- Make Packager generic
|
||||||
|
|
||||||
|
* Tue Sep 23 2003 Edwin Huffstutler <edwinh@computer.org>
|
||||||
|
- cleanup spec a bit
|
||||||
|
|
||||||
|
* Tue Jul 29 2003 Edwin Huffstutler <edwinh@hercules.my-net>
|
||||||
|
- add manpages, tweak a bit
|
||||||
|
|
||||||
|
* Thu Jul 3 2003 Edwin Huffstutler <edwinh@hercules.my-net>
|
||||||
|
- update description
|
||||||
|
|
||||||
|
* Tue Feb 18 2003 Edwin Huffstutler <edwinh@hercules.my-net>
|
||||||
|
- config file is noreplace
|
||||||
|
|
||||||
|
* Wed Jan 15 2003 Edwin Huffstutler <edwinh+flexbackup@edwinh.org>
|
||||||
|
- defattr in right spot
|
||||||
|
|
||||||
|
* Sun Jan 12 2003 Edwin Huffstutler <edwinh+flexbackup@edwinh.org>
|
||||||
|
- updated
|
||||||
|
|
||||||
|
* Sat Sep 25 1999 Edwin Huffstutler <edwinh+flexbackup@edwinh.org>
|
||||||
|
- add more requires, update description, email address.
|
||||||
|
- really goes in /usr/bin since it needs perl anyway --
|
||||||
|
if you only have your root fs, run restore or tar by hand :)
|
||||||
|
|
||||||
|
* Sat Sep 18 1999 Edwin Huffstutler <edwinh+flexbackup@edwinh.org>
|
||||||
|
- initial rpm package
|
Loading…
Reference in New Issue
Block a user