Compare commits

..

No commits in common. "rawhide" and "f21" have entirely different histories.

4 changed files with 77 additions and 1 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
/umph-0.1.8.tar.gz
/umph-0.2.0.tar.gz
/umph-0.2.3.tar.gz
/umph-0.2.5.tar.gz

View file

@ -1 +0,0 @@
Orphaned for 6+ weeks

1
sources Normal file
View file

@ -0,0 +1 @@
095f1f9da6b58b9b14db1abf193013ee umph-0.2.5.tar.gz

72
umph.spec Normal file
View file

@ -0,0 +1,72 @@
Name: umph
Version: 0.2.5
Release: 5%{?dist}
Summary: Command line tool for parsing video links from Youtube feeds
Group: Applications/Internet
License: GPLv3+
URL: http://code.google.com/p/umph/
Source0: http://%{name}.googlecode.com/files/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: perl(ExtUtils::MakeMaker)
Requires: perl(Getopt::ArgvFile) perl(XML::DOM)
%description
umph is a command line tool for parsing video links from Youtube feeds,
such as playlists, favorites and uploads. The parsed video links are printed
to the standard output each separated with a newline.
%prep
%setup -q
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
# to avoid useless perllocal.pod file installation
sed -i -e 's/pure_install doc_install/pure_install/' Makefile
# useless file
sed -i -e '/\.packlist/d' Makefile
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc ChangeLog COPYING README NEWS
%attr(755, -,-) %{_bindir}/%{name}
%{_mandir}/man1/%{name}.1.*
%changelog
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.5-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.5-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 0.2.5-3
- Perl 5.18 rebuild
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Fri Jan 18 2013 Nicoleau Fabien <nicoleau.fabien@gmail.com> 0.2.5-1
- Update to 0.2.5
* Sun Jul 15 2012 Nicoleau Fabien <nicoleau.fabien@gmail.com> 0.2.3-1
- Update to 0.2.3
* Sun Sep 4 2011 Nicoleau Fabien <nicoleau.fabien@gmail.com> 0.2.0-1
- Update to 0.2.0
* Mon Aug 15 2011 Nicoleau Fabien <nicoleau.fabien@gmail.com> 0.1.8-2
- Fix license and file section for the man page
* Mon May 23 2011 Nicoleau Fabien <nicoleau.fabien@gmail.com> 0.1.8-1
- Initial build