Hello community,
here is the log from the commit of package python-google-apputils for
openSUSE:Factory checked in at 2013-09-03 22:03:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-google-apputils (Old)
and /work/SRC/openSUSE:Factory/.python-google-apputils.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-google-apputils"
Changes:
--------
New Changes file:
--- /dev/null 2013-07-23 23:44:04.804033756 +0200
+++
/work/SRC/openSUSE:Factory/.python-google-apputils.new/python-google-apputils.changes
2013-09-03 22:03:20.000000000 +0200
@@ -0,0 +1,5 @@
+-------------------------------------------------------------------
+Tue Aug 20 18:41:43 UTC 2013 - [email protected]
+
+- Initial build
+
New:
----
apputils_stripShebang.patch
google-apputils-0.4.0.tar.gz
python-google-apputils.changes
python-google-apputils.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-google-apputils.spec ++++++
#
# spec file for package google-apputils
#
# Copyright (c) 2013 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/
#
Name: python-google-apputils
Version: 0.4.0
Release: 0
Summary: Python application utilities
License: Apache-2.0
Group: Development/Languages/Python
URL: http://code.google.com/p/google-apputils-python
Source0: google-apputils-%{version}.tar.gz
Patch0: apputils_stripShebang.patch
BuildRequires: python
BuildRequires: python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from
distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
%description
This project is a small collection of utilities for building Python
applications. It includes some of the same set of utilities used to build
and run internal Python apps at Google.
Features:
+ Simple application startup integrated with python-gflags.
+ Subcommands for command-line applications.
+ Option to drop into pdb on uncaught exceptions.
+ Helper functions for dealing with files.
+ High-level profiling tools.
+ Timezone-aware wrappers for datetime.datetime classes.
+ Improved TestCase with many of the same methods as unittest2,
plus helpful flags for test startup.
+ google_test setuptools command for running tests.
+ Helper module for creating application stubs.
%prep
%setup -q -n google-apputils-%{version}
%patch0 -p1
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root,-)
%doc LICENSE README
%{python_sitelib}/*
%changelog
++++++ apputils_stripShebang.patch ++++++
Index: google-apputils-0.4.0/google/apputils/__init__.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/__init__.py
+++ google-apputils-0.4.0/google/apputils/__init__.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
Index: google-apputils-0.4.0/google/apputils/app.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/app.py
+++ google-apputils-0.4.0/google/apputils/app.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# Copyright 2003 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Index: google-apputils-0.4.0/google/apputils/basetest.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/basetest.py
+++ google-apputils-0.4.0/google/apputils/basetest.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# Copyright 2010 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Index: google-apputils-0.4.0/google/apputils/datelib.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/datelib.py
+++ google-apputils-0.4.0/google/apputils/datelib.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# Copyright 2002 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Index: google-apputils-0.4.0/google/apputils/debug.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/debug.py
+++ google-apputils-0.4.0/google/apputils/debug.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# Copyright 2004 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Index: google-apputils-0.4.0/google/apputils/file_util.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/file_util.py
+++ google-apputils-0.4.0/google/apputils/file_util.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# Copyright 2007 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Index: google-apputils-0.4.0/google/apputils/humanize.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/humanize.py
+++ google-apputils-0.4.0/google/apputils/humanize.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2008 Google Inc. All Rights Reserved.
Index: google-apputils-0.4.0/google/apputils/resources.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/resources.py
+++ google-apputils-0.4.0/google/apputils/resources.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# Copyright 2010 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Index: google-apputils-0.4.0/google/apputils/run_script_module.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/run_script_module.py
+++ google-apputils-0.4.0/google/apputils/run_script_module.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# Copyright 2010 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Index: google-apputils-0.4.0/google/apputils/setup_command.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/setup_command.py
+++ google-apputils-0.4.0/google/apputils/setup_command.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# Copyright 2010 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Index: google-apputils-0.4.0/google/apputils/shellutil.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/shellutil.py
+++ google-apputils-0.4.0/google/apputils/shellutil.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# This code must be source compatible with Python 2.4 through 3.3.
#
# Copyright 2003 Google Inc. All Rights Reserved.
Index: google-apputils-0.4.0/google/apputils/stopwatch.py
===================================================================
--- google-apputils-0.4.0.orig/google/apputils/stopwatch.py
+++ google-apputils-0.4.0/google/apputils/stopwatch.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
# Copyright 2005 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]