From 76288cd2f8d8fd2f8b5e91bef003c281bb2e6e0d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Jan 2008 18:21:37 +0000 Subject: [PATCH 1/5] Initialize branch F-8 for PyYAML --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..e9e7ccd --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-8 From 93de3359194e32f9515a068ab5c78845f51a7886 Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Mon, 7 Jan 2008 19:00:13 +0000 Subject: [PATCH 2/5] initial import from srpm to F-8 --- .cvsignore | 1 + PyYAML.spec | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 63 insertions(+) create mode 100644 PyYAML.spec diff --git a/.cvsignore b/.cvsignore index e69de29..d2dd16c 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +PyYAML-3.05.tar.gz diff --git a/PyYAML.spec b/PyYAML.spec new file mode 100644 index 0000000..4d03628 --- /dev/null +++ b/PyYAML.spec @@ -0,0 +1,61 @@ +%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} + +Name: PyYAML +Version: 3.05 +Release: 2%{?dist} +Summary: YAML parser and emitter for Python + +Group: Development/Libraries +License: MIT +URL: http://pyyaml.org/ +Source0: http://pyyaml.org/download/pyyaml/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch +BuildRequires: python-devel, python-setuptools + +%description +YAML is a data serialization format designed for human readability and +interaction with scripting languages. PyYAML is a YAML parser and +emitter for Python. + +PyYAML features a complete YAML 1.1 parser, Unicode support, pickle +support, capable extension API, and sensible error messages. PyYAML +supports standard YAML tags and provides Python-specific tags that allow +to represent an arbitrary Python object. + +PyYAML is applicable for a broad range of tasks from complex +configuration files to object serialization and persistance. + +%prep +%setup -q -n %{name}-%{version} + + +%build +%{__python} setup.py build +chmod a-x examples/yaml-highlight/yaml_hl.py + + +%install +rm -rf $RPM_BUILD_ROOT +mkdir -p $RPM_BUILD_ROOT/%{_bindir} +%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc PKG-INFO README LICENSE examples +%{python_sitelib}/* + + +%changelog +* Wed Jan 02 2008 John Eckersberg - 3.05-2 +- Remove explicit dependency on python >= 2.3 +- Remove executable on example script in docs + +* Mon Dec 17 2007 John Eckersberg - 3.05-1 +- Initial packaging for Fedora diff --git a/sources b/sources index e69de29..3b9e36b 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +04ebb924a571cfb26d8143069068ce86 PyYAML-3.05.tar.gz From cb8e5d04af726524dcb87b8e902ced8dac027fc2 Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Fri, 24 Oct 2008 17:54:14 +0000 Subject: [PATCH 3/5] New upstream version 3.06 --- .cvsignore | 2 +- PyYAML.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index d2dd16c..520c1fd 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -PyYAML-3.05.tar.gz +PyYAML-3.06.tar.gz diff --git a/PyYAML.spec b/PyYAML.spec index 4d03628..26b86b0 100644 --- a/PyYAML.spec +++ b/PyYAML.spec @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: PyYAML -Version: 3.05 -Release: 2%{?dist} +Version: 3.06 +Release: 1%{?dist} Summary: YAML parser and emitter for Python Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Oct 24 2008 John Eckersberg - 3.06-1 +- New upstream release + * Wed Jan 02 2008 John Eckersberg - 3.05-2 - Remove explicit dependency on python >= 2.3 - Remove executable on example script in docs diff --git a/sources b/sources index 3b9e36b..d97f5d5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -04ebb924a571cfb26d8143069068ce86 PyYAML-3.05.tar.gz +3d3c92528f1547756c9e1d80d7d905c7 PyYAML-3.06.tar.gz From f6f80d69cdd5f67e111cfe4f23568041cf4e8196 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 00:20:54 +0000 Subject: [PATCH 4/5] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index df5dee3..a0a01e5 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := PyYAML SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From ff250c083fd8e68414a9dacbe290a56a43c8cfb8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:13:54 +0000 Subject: [PATCH 5/5] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index a0a01e5..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: PyYAML -# $Id$ -NAME := PyYAML -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index e9e7ccd..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-8