till pushed to python-paver (epel7). "2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks. (..more)"

notifications at fedoraproject.org notifications at fedoraproject.org
Mon Apr 13 15:47:23 UTC 2015


>From c04e4a827900cf670e3db3d33ebc8da67b652c59 Mon Sep 17 00:00:00 2001
From: Till Maas <opensource at till.name>
Date: Mon, 13 Apr 2015 17:47:12 +0200
Subject: 2015-04-13: Retired orphaned package, because it was orphaned for
 more than six weeks. Reference: https://fedorahosted.org/epel/ticket/7


diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 9cb74c4..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,7 +0,0 @@
-Paver-1.0.3.tar.gz
-/Paver-1.0.4.tar.gz
-/Paver-1.0.5.tar.gz
-/Paver-1.1.0.tar.gz
-/Paver-1.1.1.tar.gz
-/Paver-1.2.0.tar.gz
-/Paver-1.2.1.tar.gz
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..b634127
--- /dev/null
+++ b/dead.package
@@ -0,0 +1,3 @@
+2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks.
+Reference: https://fedorahosted.org/epel/ticket/7
+
diff --git a/paver-dry-wrapper-non-string-fix.patch b/paver-dry-wrapper-non-string-fix.patch
deleted file mode 100644
index 89287a9..0000000
--- a/paver-dry-wrapper-non-string-fix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: Paver-1.2.1/paver/path.py
-===================================================================
---- Paver-1.2.1.orig/paver/path.py
-+++ Paver-1.2.1/paver/path.py
-@@ -63,7 +63,7 @@ def _make_wrapper(name, func):
-         global _silence_nested_calls
-         msg = None
-         if not _silence_nested_calls:
--            msg = name + ' ' + ' '.join(args)
-+            msg = name + ' ' + ' '.join(map(repr, args))
-         try:
-             _silence_nested_calls = True
-             return dry(msg, func, *args, **kwds)
diff --git a/paver-samefile-fix.patch b/paver-samefile-fix.patch
deleted file mode 100644
index 8ae4f9e..0000000
--- a/paver-samefile-fix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: Paver-1.1.1/paver/path.py
-===================================================================
---- Paver-1.1.1.orig/paver/path.py
-+++ Paver-1.1.1/paver/path.py
-@@ -837,7 +837,7 @@ class path(_base):
-     def ismount(self): return os.path.ismount(self)
- 
-     if hasattr(os.path, 'samefile'):
--        def samefile(self): return os.path.samefile(self)
-+        def samefile(self, otherfile): return os.path.samefile(self, otherfile)
- 
-     def getatime(self): return os.path.getatime(self)
-     atime = property(
diff --git a/paver-unbundle.patch b/paver-unbundle.patch
deleted file mode 100644
index 65085bf..0000000
--- a/paver-unbundle.patch
+++ /dev/null
@@ -1,163 +0,0 @@
-Index: Paver-1.2.1/paver/doctools.py
-===================================================================
---- Paver-1.2.1.orig/paver/doctools.py
-+++ Paver-1.2.1/paver/doctools.py
-@@ -121,26 +121,29 @@ class SectionedFile(object):
-         self.contents = []
-         self.sections = {}
-         if from_string is not None:
--            from paver.deps.six import StringIO
-+            try:
-+                from six import StringIO
-+            except ImportError:
-+                from paver.deps.six import StringIO
-             self._read_file(StringIO(from_string))
-         else:
-             with open(filename) as f:
-                 self._read_file(f)
--        
-+
-     def _read_file(self, f):
-         """Do the work of reading the file."""
-         contents = self.contents
-         sections = self.sections
-         real_lineno = 1
-         output_lineno = 0
--        
-+
-         stack = []
-         line = f.readline()
-         while line:
-             m = _sectionmarker.search(line)
-             if m:
-                 section = m.group(1)
--                debug("Section %s found at %s (%s)", section, real_lineno, 
-+                debug("Section %s found at %s (%s)", section, real_lineno,
-                       output_lineno)
-                 stack.append(section)
-                 sectionname = ".".join(stack)
-Index: Paver-1.2.1/paver/misctasks.py
-===================================================================
---- Paver-1.2.1.orig/paver/misctasks.py
-+++ Paver-1.2.1/paver/misctasks.py
-@@ -1,7 +1,10 @@
- """Miscellaneous tasks that don't fit into one of the other groupings."""
- import pkgutil
- import zipfile
--import paver.deps.six as six
-+try:
-+    import six
-+except ImportError:
-+    import paver.deps.six as six
- from os.path import join, dirname, exists, abspath
- from paver.easy import dry, task
- from paver.tasks import VERSION, cmdopts
-Index: Paver-1.2.1/paver/setuputils.py
-===================================================================
---- Paver-1.2.1.orig/paver/setuputils.py
-+++ Paver-1.2.1/paver/setuputils.py
-@@ -14,7 +14,10 @@ except ImportError:
- from distutils.errors import DistutilsModuleError
- _Distribution = dist.Distribution
- 
--from paver.deps.six import print_
-+try:
-+    from six import print_
-+except ImportError:
-+    from paver.deps.six import print_
- 
- from paver.options import Bunch
- 
-Index: Paver-1.2.1/paver/tasks.py
-===================================================================
---- Paver-1.2.1.orig/paver/tasks.py
-+++ Paver-1.2.1/paver/tasks.py
-@@ -11,8 +11,12 @@ import traceback
- 
- from os.path import *
- 
--import paver.deps.six as six
--from paver.deps.six import print_
-+try:
-+    import six
-+    from six import print_
-+except ImportError:
-+    import paver.deps.six as six
-+    from paver.deps.six import print_
- from paver.version import VERSION
- 
- # using six.moves is complicated because we include it and it's thus not at
-Index: Paver-1.2.1/paver/tests/test_doctools.py
-===================================================================
---- Paver-1.2.1.orig/paver/tests/test_doctools.py
-+++ Paver-1.2.1/paver/tests/test_doctools.py
-@@ -2,7 +2,10 @@ from __future__ import with_statement
- import sys
- 
- from nose.plugins.skip import SkipTest
--from paver.deps.six import print_
-+try:
-+    from six import print_
-+except ImportError:
-+    from paver.deps.six import print_
- 
- from paver.easy import *
- from paver import doctools, tasks, options
-Index: Paver-1.2.1/paver/tests/test_easy.py
-===================================================================
---- Paver-1.2.1.orig/paver/tests/test_easy.py
-+++ Paver-1.2.1/paver/tests/test_easy.py
-@@ -1,5 +1,8 @@
- import sys
--from paver.deps.six import b
-+try:
-+    from six import b
-+except ImportError:
-+    from paver.deps.six import b
- from mock import patch, Mock
- from paver import easy
- from subprocess import PIPE, STDOUT
-Index: Paver-1.2.1/paver/tests/test_setuputils.py
-===================================================================
---- Paver-1.2.1.orig/paver/tests/test_setuputils.py
-+++ Paver-1.2.1/paver/tests/test_setuputils.py
-@@ -1,5 +1,8 @@
- from distutils.core import Command
--from paver.deps.six import print_
-+try:
-+    from six import print_
-+except ImportError:
-+    from paver.deps.six import print_
- 
- from paver.setuputils import install_distutils_tasks, \
-                             DistutilsTaskFinder, _get_distribution, \
-Index: Paver-1.2.1/paver/tests/test_tasks.py
-===================================================================
---- Paver-1.2.1.orig/paver/tests/test_tasks.py
-+++ Paver-1.2.1/paver/tests/test_tasks.py
-@@ -2,7 +2,10 @@ from __future__ import with_statement
- import os
- from pprint import pprint
- 
--from paver.deps.six import print_
-+try:
-+    from six import print_
-+except ImportError:
-+    from paver.deps.six import print_
- 
- from paver import setuputils, misctasks, tasks, options
- 
-Index: Paver-1.2.1/paver/tests/utils.py
-===================================================================
---- Paver-1.2.1.orig/paver/tests/utils.py
-+++ Paver-1.2.1/paver/tests/utils.py
-@@ -1,5 +1,8 @@
- import types
--import paver.deps.six as six
-+try:
-+    import six
-+except ImportError:
-+    import paver.deps.six as six
- 
- from paver import setuputils, tasks
- 
diff --git a/python-paver.spec b/python-paver.spec
deleted file mode 100644
index 9c97b70..0000000
--- a/python-paver.spec
+++ /dev/null
@@ -1,183 +0,0 @@
-%if 0%{?rhel} && 0%{?rhel} < 6
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%endif
-
-%global srcname Paver
-Name: python-paver
-Version: 1.2.1
-Release: 1%{?dist}
-Summary: Python-based build/distribution/deployment scripting tool
-
-Group: Development/Languages
-# The main paver code is licensed BSD
-# The paver documentation includes jquery which is licensed MIT or GPLv2
-License: BSD and (MIT or GPLv2)
-URL: http://www.blueskyonmars.com/projects/paver/
-Source0: http://pypi.python.org/packages/source/P/%{srcname}/%{srcname}-%{version}.tar.gz
-# Unbundle python-six
-Patch0: paver-unbundle.patch
-# Fix for nonstring args to a dry run (for instance, octal value for chmod)
-# https://github.com/paver/paver/commit/c7489dfa8be5967e8a88876425502a2df98106a6#diff-0
-Patch1: paver-dry-wrapper-non-string-fix.patch
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
-BuildArch: noarch
-BuildRequires: python2-devel
-BuildRequires: python-setuptools
-BuildRequires: python-sphinx
-BuildRequires: python-nose
-BuildRequires: python-six
-BuildRequires: python-mock
-
-Requires:      python2-devel
-Requires:      python-setuptools
-Requires: python-six
-
-%description
-Paver is a Python-based build/distribution/deployment scripting tool along the
-lines of Make or Rake. What makes Paver unique is its integration with commonly
-used Python libraries. Common tasks that were easy before remain easy. More
-importantly, dealing with your applications specific needs and requirements is
-now much easier.
-
-* Build files are just Python
-* One file with one syntax, pavement.py, knows how to manage your project
-* File operations are unbelievably easy, thanks to the built-in version of
-  Jason Orendorff’s path.py.
-* Need to do something that takes 5 lines of code? It’ll only take 5 lines of
-  code..
-* Completely encompasses distutils and setuptools so that you can customize
-  behavior as you need to.
-* Wraps Sphinx for generating documentation, and adds utilities that make it
-  easier to incorporate fully tested sample code.
-* Wraps Subversion for working with code that is checked out.
-* Wraps virtualenv to allow you to trivially create a bootstrap script that
-  gets a virtual environment up and running. This is a great way to install
-  packages into a contained environment.
-* Can use all of these other libraries, but requires none of them
-* Easily transition from setup.py without making your users learn about or
-  even install Paver! (See the Getting Started Guide for an example).
-
-
-%prep
-%setup -q -n %{srcname}-%{version}
-
-%patch0 -p1
-%patch1 -p1
-
-rm paver/deps/six*
-
-# Note: This falls somewhere in between source and non-source.  It's a copy
-# of the essential files from the library that's being packaged.  But it's
-# zipped up.  For us, the paver command should find the uninstalled paver
-# module in the directory so we might as well use it instead.
-rm paver-minilib.zip
-
-%build
-%{__python} setup.py build
-
-%check
-# Disable the two cog tests as python-cog(app) is not packaged for Fedora
-nosetests -e test_cogging -e test_cogging_with_markers_removed
-
-%install
-rm -rf %{buildroot}
-
-%{__python} setup.py install --skip-build --root %{buildroot}
-
-%clean
-rm -rf %{buildroot}
-
-%files
-%defattr(-,root,root,-)
-%doc LICENSE.txt README.rst
-%{_bindir}/*
-%{python_sitelib}/*
-%exclude %{python_sitelib}/paver/tests
-
-
-%changelog
-* Tue Jul 23 2013 Toshio Kuratomi <toshio at fedoraproject.org> - 1.2.1-1
-- Update to upstream 1.2.1 and fix a problem with the dry run wrappers and non-string args
-
-* Mon Feb 25 2013 Toshio Kuratomi <toshio at fedoraproject.org> - 1.2.0-1
-- Update to upstream 1.2.0 release
-- samefile patch merged upstream
-- Patch to unbundle included python-six
-- Disable cog as it's not packaged yet
-- Remove the unittests from the binary rpm
-
-* Thu Feb 14 2013 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.1.1-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Thu Jan 10 2013 Toshio Kuratomi <toshio at fedoraproject.org> - 1.1.1-2
-- Fix paver's use of os.path.samefile
-
-* Sun Aug 26 2012 Toshio Kuratomi <toshio at fedoraproject.org> - 1.1.1-1
-- New upstream bugfix
-
-* Thu Aug  2 2012 Toshio Kuratomi <toshio at fedoraproject.org> - 1.1.0-3
-- Patch from upstream for the setuptools issues
-
-* Thu Aug  2 2012 Toshio Kuratomi <toshio at fedoraproject.org> - 1.1.0-2
-- Remove the site.py that the install is creating
-
-* Mon Jul 30 2012 Toshio Kuratomi <toshio at fedoraproject.org> - 1.1.0-1
-- New upstream update
-
-* Sat Jul 21 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.0.5-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Mon Jul 16 2012 Toshio Kuratomi <toshio at fedoraproject.org> - 1.0.5-1
-- Update to 1.0.5
-
-* Sat Jan 14 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.0.4-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
-* Tue Feb 08 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.0.4-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
-
-* Tue Jan 18 2011 Toshio Kuratomi <toshio at fedoraproject.org> - 1.0.4-1
-- Update to 1.0.4
-
-* Thu Jul 22 2010 David Malcolm <dmalcolm at redhat.com> - 1.0.3-2
-- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
-
-* Mon Jun 28 2010 Toshio Kuratomi <toshio at fedoraproject.org> - 1.0.3-1
-- Update to 1.0.3
-
-* Wed May 19 2010 Toshio Kuratomi <toshio at fedoraproject.org> - 1.0.2-1
-- Update to 1.0.2
-
-* Wed Feb 03 2010 Toshio Kuratomi <toshio at fedoraproject.org> - 1.0.1-1
-- Update to 1.0.1
-
-* Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.0-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
-
-* Mon Apr 13 2009 Toshio Kuratomi <toshio at fedoraproject.org> - 1.0-2
-- Patch for python-2.4 compatibility
-
-* Tue Mar 24 2009 Toshio Kuratomi <toshio at fedoraproject.org> - 1.0-1
-- New upstream final.
-
-* Thu Mar 19 2009 Toshio Kuratomi <toshio at fedoraproject.org> - 1.0-0.1.b1
-- New upstream beta.
-
-* Thu Feb 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.8.1-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Mon Dec 15 2008 Toshio Kuratomi <toshio at fedoraproject.org> - 0.8.1-5
-- Require python-setuptools as the paver app is a setuptools script.
-
-* Mon Dec 15 2008 Luke Macken <lmacken at redhat.com> - 0.8.1-4
-- Require python-devel.
-
-* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm at gmail.com> - 0.8.1-3
-- Rebuild for Python 2.6
-
-* Sat Aug 9 2008 Toshio Kuratomi <toshio at fedoraproject.org> - 0.8.1-2
-- Run the unittests.
-
-* Thu Aug 7 2008 Toshio Kuratomi <toshio at fedoraproject.org> - 0.8.1-1
-- Intial Fedora build.
diff --git a/sources b/sources
deleted file mode 100644
index ae8a7b4..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-78d0cea13e41a31fcb347cf37ea4577f  Paver-1.2.1.tar.gz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/python-paver.git/commit/?h=epel7&id=c04e4a827900cf670e3db3d33ebc8da67b652c59


More information about the scm-commits mailing list