Accepting request 73237 from YaST:Head
- updated to latest repository OBS-URL: https://build.opensuse.org/request/show/73237 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/snapper?expand=0&rev=3
This commit is contained in:
parent
a32a79868f
commit
558de6057b
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1765232925d9882d357439714bc9f664f09e6055970ca1b72b5d63327ff79ebd
|
||||
size 296611
|
3
snapper-0.0.6.tar.bz2
Normal file
3
snapper-0.0.6.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7fc9784df36a53b0d48800aa2ae46de9cf576c7d434e54c72fd60e0401921c22
|
||||
size 302889
|
@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 09 17:52:41 CEST 2011 - aschnell@suse.de
|
||||
|
||||
- added man-page
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 06 15:01:13 CEST 2011 - aschnell@suse.de
|
||||
|
||||
- place snapshots in .snapshots directory
|
||||
- version 0.0.6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 06 16:44:43 CEST 2011 - aschnell@suse.de
|
||||
|
||||
@ -12,6 +23,6 @@ Mon Apr 04 14:20:43 CEST 2011 - aschnell@suse.de
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 10 14:55:25 CET 2011 - aschnell@suse.de
|
||||
|
||||
- started development
|
||||
- started development (fate #303699)
|
||||
- version 0.0.1
|
||||
|
||||
|
73
snapper.spec
73
snapper.spec
@ -1,35 +1,21 @@
|
||||
#
|
||||
# spec file for package snapper
|
||||
# spec file for package snapper (Version 0.0.6)
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: snapper
|
||||
Version: 0.0.5
|
||||
Release: 1
|
||||
License: GPL
|
||||
Group: System/Packages
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Source: snapper-%{version}.tar.bz2
|
||||
Prefix: /usr
|
||||
BuildRequires: blocxx-devel boost-devel dejagnu doxygen gcc-c++ libxml2-devel
|
||||
Requires: libsnapper0 = %version
|
||||
Recommends: cron logrotate
|
||||
Summary: Tool for filesystem snapshot management
|
||||
Name: snapper
|
||||
Version: 0.0.6
|
||||
Release: 0
|
||||
License: GPL
|
||||
Group: System/Packages
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Source: snapper-%{version}.tar.bz2
|
||||
Prefix: /usr
|
||||
BuildRequires: gcc-c++ boost-devel blocxx-devel doxygen dejagnu libxml2-devel
|
||||
Requires: libsnapper1 = %version
|
||||
Recommends: cron logrotate
|
||||
Summary: Tool for filesystem snapshot management
|
||||
Url: http://en.opensuse.org/Portal:Snapper
|
||||
|
||||
%description
|
||||
This package contains snapper, a tool for filesystem snapshot management.
|
||||
@ -66,25 +52,25 @@ rm -rf "$RPM_BUILD_ROOT"
|
||||
%files -f snapper.lang
|
||||
%defattr(-,root,root)
|
||||
%{prefix}/bin/snapper
|
||||
%doc %{_mandir}/*/*
|
||||
%config(noreplace) %{_sysconfdir}/logrotate.d/snapper
|
||||
/etc/cron.hourly/suse.de-snapper
|
||||
/etc/cron.daily/suse.de-snapper
|
||||
|
||||
%package -n libsnapper0
|
||||
License: GPL
|
||||
Summary: Library for filesystem snapshot management
|
||||
Group: System/Libraries
|
||||
Requires: btrfsprogs diffutils util-linux
|
||||
PreReq: %fillup_prereq
|
||||
%package -n libsnapper1
|
||||
Summary: Library for filesystem snapshot management
|
||||
Group: System/Libraries
|
||||
Requires: btrfsprogs diffutils util-linux
|
||||
PreReq: %fillup_prereq
|
||||
|
||||
%description -n libsnapper0
|
||||
%description -n libsnapper1
|
||||
This package contains libsnapper, a library for filesystem snapshot management.
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Arvin Schnell <aschnell@suse.de>
|
||||
|
||||
%files -n libsnapper0
|
||||
%files -n libsnapper1
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libsnapper.so.*
|
||||
%dir %{_sysconfdir}/snapper
|
||||
@ -101,19 +87,18 @@ Authors:
|
||||
%dir %{prefix}/lib/snapper/bin
|
||||
%{prefix}/lib/snapper/bin/compare-dirs
|
||||
|
||||
%post -n libsnapper0
|
||||
%post -n libsnapper1
|
||||
/sbin/ldconfig
|
||||
%{fillup_only -n snapper}
|
||||
|
||||
%postun -n libsnapper0
|
||||
%postun -n libsnapper1
|
||||
/sbin/ldconfig
|
||||
|
||||
%package -n libsnapper-devel
|
||||
License: GPL
|
||||
Requires: libsnapper0 = %version
|
||||
Requires: gcc-c++ libstdc++-devel boost-devel blocxx-devel libxml2-devel
|
||||
Summary: Header files and documentation for libsnapper
|
||||
Group: Development/Languages/C and C++
|
||||
Requires: libsnapper1 = %version
|
||||
Requires: gcc-c++ libstdc++-devel boost-devel blocxx-devel libxml2-devel
|
||||
Summary: Header files and documentation for libsnapper
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description -n libsnapper-devel
|
||||
This package contains header files and documentation for developing with
|
||||
@ -128,5 +113,3 @@ Authors:
|
||||
%{_libdir}/libsnapper.la
|
||||
%{_libdir}/libsnapper.so
|
||||
%{prefix}/include/snapper
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user