[goobook] Initial import

helloworld1 helloworld1 at fedoraproject.org
Mon Aug 23 21:39:08 UTC 2010


commit 76dabce5bcd1f379a0a249ef14e4da2e545a7e1a
Author: Liberty <mrlhwliberty at gmail.com>
Date:   Mon Aug 23 17:38:54 2010 -0400

    Initial import

 .gitignore   |    1 +
 goobook.spec |   66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources      |    1 +
 3 files changed, 68 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..04aed42 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/goobook-1.3.tar.gz
diff --git a/goobook.spec b/goobook.spec
new file mode 100644
index 0000000..c3c4967
--- /dev/null
+++ b/goobook.spec
@@ -0,0 +1,66 @@
+Name:		goobook
+Version:	1.3
+Release:	4%{?dist}
+Summary:	Abook-style interface for google contacts for mutt
+
+Group:		Applications/Internet
+License:	GPLv3
+URL:		http://code.google.com/p/goobook
+Source0:	http://pypi.python.org/packages/source/g/%{name}/%{name}-%{version}.tar.gz
+
+BuildArch:	noarch
+
+BuildRequires:	python-setuptools
+BuildRequires:	python2-devel
+Requires:	python-simplejson >= 2.1.0
+Requires:	python-hcs_utils = 1.1.1
+Requires:	python-argparse >= 1.1
+Requires:	python-gdata
+
+
+%description
+Goobook is a command-line interface to Google contacts. It includes
+* Searching contacts
+* Mutt integration (the same way as for abook)
+* Adding new contacts (very basic) 
+
+%prep
+%setup -q -n %{name}-%{version}
+
+
+%build
+%{__python} setup.py build
+
+%install
+%{__python} setup.py install --skip-build --root %{buildroot}
+
+# Remove shebang
+for lib in %{buildroot}%{python_sitelib}/goobook/*.py; do
+	sed '/\/usr\/bin\/env/d' $lib > $lib.new &&
+	touch -r $lib $lib.new &&
+	mv $lib.new $lib
+done
+
+%files
+%defattr(-,root,root,-)
+%doc LICENSE.txt README.txt IDEAS.txt CHANGES.txt CONTRIBUTORS.txt TODO.txt HACKING.txt
+%{python_sitelib}/goobook*
+%{_bindir}/goobook
+
+
+
+%changelog
+* Sun Aug 8 2010 Howard Ning <mrlhwliberty at gmail.com> - 1.3-4
+- Change the version requirement. 
+
+* Fri Aug 6 2010 Howard Ning <mrlhwliberty at gmail.com> - 1.3-3
+- BuildRequires python-setuptools 
+
+* Wed Aug 4 2010 Howard Ning <mrlhwliberty at gmail.com> - 1.3-2
+- Clean up the spec file 
+
+* Sun Jul 25 2010 Howard Ning <mrlhwliberty at gmail.com> - 1.3-1
+- Bump version to official release
+ 
+* Mon Jun 21 2010 Howard Ning <mrlhwliberty at gmail.com> - 1.3-0.1.a1
+- Initial Release
diff --git a/sources b/sources
index e69de29..7dd1b14 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+cbe05f778a4c8a26c844367dfb46c488  goobook-1.3.tar.gz


More information about the scm-commits mailing list