Pascal Bleser 2010-11-09 21:55:26 +00:00 committed by Git OBS Bridge
commit 3352d77fb9
5 changed files with 171 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
pv-1.1.4.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c8613c240ab4297f6ad346f0047138f551a093c603eeb581d5e83091cad3a559
size 81959

96
pv.changes Normal file
View File

@ -0,0 +1,96 @@
-------------------------------------------------------------------
Tue Nov 9 21:55:09 UTC 2010 - pascal.bleser@opensuse.org
- moved to utilities
-------------------------------------------------------------------
Thu Mar 6 00:00:00 UTC 2008 - guru@unixtech.be
- new upstream version
-------------------------------------------------------------------
Mon Oct 22 00:00:00 UTC 2007 - guru@unixtech.be
- moved to openSUSE Build Service
-------------------------------------------------------------------
Thu Aug 30 00:00:00 UTC 2007 - guru@unixtech.be
- new upstream version
-------------------------------------------------------------------
Fri Aug 3 00:00:00 UTC 2007 - guru@unixtech.be
- new upstream version
-------------------------------------------------------------------
Mon Feb 5 00:00:00 UTC 2007 - guru@unixtech.be
- new upstream version
-------------------------------------------------------------------
Tue Feb 28 00:00:00 UTC 2006 - guru@unixtech.be
- new upstream version
-------------------------------------------------------------------
Thu Dec 8 00:00:00 UTC 2005 - guru@unixtech.be
- added debuginfo support
- use makeinstall macro
- use configure macro
- added autoreconf
- use install_info SUSE macros
- use find_lang macro
- rewrote spec file
- new upstream version
-------------------------------------------------------------------
Fri Jun 17 00:00:00 UTC 2005 - guru@unixtech.be
- version 0.9.1
-------------------------------------------------------------------
Sun Nov 7 00:00:00 UTC 2004 - guru@unixtech.be
- version 0.8.9
-------------------------------------------------------------------
Mon May 3 00:00:00 UTC 2004 - guru@unixtech.be
- version 0.8.5
-------------------------------------------------------------------
Sun Apr 25 00:00:00 UTC 2004 - guru@unixtech.be
- version 0.8.2
-------------------------------------------------------------------
Tue Apr 20 00:00:00 UTC 2004 - guru@unixtech.be
- version 0.8.1
-------------------------------------------------------------------
Sun Feb 8 00:00:00 UTC 2004 - guru@unixtech.be
- version 0.7.0
-------------------------------------------------------------------
Tue Jan 6 00:00:00 UTC 2004 - guru@unixtech.be
- new spec-file

48
pv.spec Normal file
View File

@ -0,0 +1,48 @@
# vim: set sw=4 ts=4 et:
# norootforbuild
Name: pv
Version: 1.1.4
Release: 0
Summary: PipeViewer - Monitor the Progress of Data through Pipes
Source: http://pipeviewer.googlecode.com/files/pv-%{version}.tar.bz2
URL: http://www.ivarch.com/programs/pv.shtml
Group: System/Tools
License: Artistic License
BuildRoot: %{_tmppath}/build-%{name}-%{version}
BuildRequires: make gettext gettext-devel gcc glibc-devel intltool
%description
PV ("Pipe Viewer") is a tool for monitoring the progress of data through a
pipeline. It can be inserted into any normal pipeline between two processes
to give a visual indication of how quickly data is passing through, how long
it has taken, how near to completion it is, and an estimate of how long it
will be until completion.
%prep
%setup -q
%build
%configure \
--enable-lfs \
--enable-nls \
--disable-debugging
%__make %{?jobs:-j%{jobs}}
%install
%makeinstall
%find_lang "%{name}"
%check
%__make test
%clean
%{?buildroot:%__rm -rf "%{buildroot}"}
%files -f "%{name}.lang"
%defattr(-,root,root)
%doc README doc/COPYING doc/NEWS doc/TODO
%{_bindir}/pv
%doc %{_mandir}/man1/pv.1%{ext_man}