Compare commits
5 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d3ddf6292 | ||
|
|
bafe7b5de0 | ||
|
|
a44111adb1 | ||
|
|
f12b2b5d6d | ||
|
|
ea581dab6c |
4 changed files with 20 additions and 27 deletions
0
.cvsignore → .gitignore
vendored
0
.cvsignore → .gitignore
vendored
21
Makefile
21
Makefile
|
|
@ -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 $$/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)
|
|
||||||
24
PyYAML.spec
24
PyYAML.spec
|
|
@ -1,8 +1,8 @@
|
||||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||||
|
|
||||||
Name: PyYAML
|
Name: PyYAML
|
||||||
Version: 3.06
|
Version: 3.08
|
||||||
Release: 1%{?dist}
|
Release: 4%{?dist}
|
||||||
Summary: YAML parser and emitter for Python
|
Summary: YAML parser and emitter for Python
|
||||||
|
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
|
|
@ -11,8 +11,7 @@ URL: http://pyyaml.org/
|
||||||
Source0: http://pyyaml.org/download/pyyaml/%{name}-%{version}.tar.gz
|
Source0: http://pyyaml.org/download/pyyaml/%{name}-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildRequires: python-devel, python-setuptools, libyaml-devel
|
||||||
BuildRequires: python-devel, python-setuptools
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
YAML is a data serialization format designed for human readability and
|
YAML is a data serialization format designed for human readability and
|
||||||
|
|
@ -53,6 +52,21 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Mar 3 2009 John Eckersberg <jeckersb@redhat.com> - 3.08-4
|
||||||
|
- Correction, change libyaml to libyaml-devel in BuildRequires
|
||||||
|
|
||||||
|
* Mon Mar 2 2009 John Eckersberg <jeckersb@redhat.com> - 3.08-3
|
||||||
|
- Add libyaml to BuildRequires
|
||||||
|
|
||||||
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.08-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 18 2009 John Eckersberg <jeckersb@redhat.com> - 3.08-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 3.06-2
|
||||||
|
- Rebuild for Python 2.6
|
||||||
|
|
||||||
* Fri Oct 24 2008 John Eckersberg <jeckersb@redhat.com> - 3.06-1
|
* Fri Oct 24 2008 John Eckersberg <jeckersb@redhat.com> - 3.06-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
3d3c92528f1547756c9e1d80d7d905c7 PyYAML-3.06.tar.gz
|
a4163a2017fa57f448c66815511fa555 PyYAML-3.08.tar.gz
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue