Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e8da0ffabe | ||
|
|
36f8c1538a | ||
| 32c825914d | |||
| a1b269c70e | |||
| 5a76fe814d | |||
|
|
82da488114 |
4 changed files with 29 additions and 24 deletions
0
.cvsignore → .gitignore
vendored
0
.cvsignore → .gitignore
vendored
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: winpdb
|
||||
# $Id$
|
||||
NAME := winpdb
|
||||
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)
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
f650271232a4fa164f5a22bbd0d4a178 winpdb-1.4.0.tar.gz
|
||||
3658a9aa7ce31ab62590bc0a75635991 winpdb-1.4.6.tar.gz
|
||||
|
|
|
|||
30
winpdb.spec
30
winpdb.spec
|
|
@ -1,14 +1,15 @@
|
|||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
|
||||
Name: winpdb
|
||||
Version: 1.4.0
|
||||
Version: 1.4.6
|
||||
Release: 1%{?dist}
|
||||
Summary: An advanced python debugger
|
||||
Group: Development/Debuggers
|
||||
License: GPLv2+
|
||||
URL: http://www.winpdb.org/
|
||||
Source0: http://download.sourceforge.net/winpdb/%{name}-%{version}.tar.gz
|
||||
Source0: http://winpdb.googlecode.com/files/winpdb-%{version}.tar.gz
|
||||
Source1: %{name}.desktop
|
||||
Source2: %{name}.png
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
BuildRequires: python-devel, wxPython-devel >= 2.6, desktop-file-utils
|
||||
|
|
@ -30,6 +31,9 @@ chmod -x README.txt
|
|||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
%{__python} setup.py install --skip-build --root=$RPM_BUILD_ROOT
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps
|
||||
install -m0644 -p %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps
|
||||
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
|
||||
|
||||
desktop-file-install --vendor fedora \
|
||||
|
|
@ -47,8 +51,30 @@ rm -rf $RPM_BUILD_ROOT
|
|||
%{_bindir}/*
|
||||
%{python_sitelib}/*
|
||||
%{_datadir}/applications/*.desktop
|
||||
%{_datadir}/pixmaps/%{name}.png
|
||||
|
||||
%changelog
|
||||
* Wed Apr 8 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.4.6-1
|
||||
- update to 1.4.6
|
||||
|
||||
* Wed Mar 4 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.4.4-4
|
||||
- fix typo
|
||||
|
||||
* Wed Mar 4 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.4.4-3
|
||||
- add icon, fix desktop file (bz 487870)
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Wed Feb 11 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.4.4-1
|
||||
- update to 1.4.4
|
||||
|
||||
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.4.2-2
|
||||
- Rebuild for Python 2.6
|
||||
|
||||
* Thu Nov 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.4.2-1
|
||||
- update to 1.4.2, source moved to google code
|
||||
|
||||
* Fri Sep 12 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.4.0-1
|
||||
- update to 1.4.0
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue