[umph/f16] Initial import (#708554)

Nicoleau Fabien eponyme at fedoraproject.org
Wed Aug 17 20:08:44 UTC 2011


commit 2c5342dd19e3d34bad7c2e61668d6e49c31b2f0d
Author: eponyme <eponyme at fedoraproject.org>
Date:   Wed Aug 17 22:09:50 2011 +0200

    Initial import (#708554)

 .gitignore |    1 +
 sources    |    1 +
 umph.spec  |   54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 56 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..b5a87b5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/umph-0.1.8.tar.gz
diff --git a/sources b/sources
index e69de29..b7b844a 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+2651413fa3a6173116f95fbcf2898744  umph-0.1.8.tar.gz
diff --git a/umph.spec b/umph.spec
new file mode 100644
index 0000000..38f25ea
--- /dev/null
+++ b/umph.spec
@@ -0,0 +1,54 @@
+Name:           umph
+Version:        0.1.8
+Release:        2%{?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
+* Mon Aug 15 2011 Nicoleau Fabien <nicoleau.fabien at gmail.com> 0.1.8-2
+- Fix license and file section for the man page
+* Mon May 23 2011 Nicoleau Fabien <nicoleau.fabien at gmail.com> 0.1.8-1
+- Initial build
+


More information about the scm-commits mailing list