Compare commits
28 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d9d78f2f45 | ||
|
|
c9127e4afd | ||
|
|
9ccd7aa97d | ||
| 609bc6a7b3 | |||
|
66bb3abe81 |
|||
|
6ee4e7a9d2 |
|||
|
499fd65c1f |
|||
|
|
97f835cd3e | ||
|
|
86ecc84ddf | ||
|
|
eb5e93c8ff | ||
|
233f9740ba |
|||
| 7567d4cd5c | |||
|
|
73178470ca | ||
|
|
9cae41336e | ||
|
|
6626bc1bc8 | ||
|
|
36244c08c6 | ||
|
|
4bedb95a16 | ||
|
|
91d614cadd | ||
|
|
d19414f876 | ||
|
|
f557c30dea | ||
|
|
15014f438e | ||
|
|
9485fd0e43 | ||
|
|
d4b6db1889 | ||
|
|
1a23245034 | ||
|
|
45e8435dda | ||
|
|
f473abaeef | ||
|
|
452ca922a6 | ||
|
|
30386fddbc |
5 changed files with 1 additions and 141 deletions
|
|
@ -1 +0,0 @@
|
|||
wuja-0.0.8.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: wuja
|
||||
# $Id$
|
||||
NAME := wuja
|
||||
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)
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
wuja fails to build from source: https://bugzilla.redhat.com/show_bug.cgi?id=1676222
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
a8775b800930e589d61dbba439d3ee81 wuja-0.0.8.tar.gz
|
||||
118
wuja.spec
118
wuja.spec
|
|
@ -1,118 +0,0 @@
|
|||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
|
||||
Name: wuja
|
||||
Version: 0.0.8
|
||||
Release: 6%{?dist}
|
||||
Summary: Gnome desktop applet for integration with Google Calendar
|
||||
|
||||
Group: Applications/Internet
|
||||
License: GPLv2+
|
||||
URL: http://dangerouslyinc.com/wuja
|
||||
Source0: http://dangerouslyinc.com/files/wuja/wuja-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python-devel
|
||||
|
||||
Requires: python-vobject >= 0.4.4
|
||||
Requires: python-dateutil >= 1.1
|
||||
Requires: gnome-python2-libegg >= 2.14.3
|
||||
Requires: gnome-python2-gconf >= 2.18.1
|
||||
Requires: notify-python >= 0.1.0
|
||||
|
||||
Requires(pre): GConf2
|
||||
Requires(post): GConf2
|
||||
Requires(preun): GConf2
|
||||
|
||||
%description
|
||||
wuja is a Gnome application for integration with Google Calendar.
|
||||
%prep
|
||||
%setup -q -n wuja-%{version}
|
||||
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
|
||||
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
||||
rm -f $RPM_BUILD_ROOT%{python_sitelib}/*egg-info/requires.txt
|
||||
|
||||
|
||||
%pre
|
||||
if [ "$1" -gt 1 ]; then
|
||||
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
||||
gconftool-2 --makefile-uninstall-rule \
|
||||
%{_sysconfdir}/gconf/schemas/wuja.schema >/dev/null || :
|
||||
fi
|
||||
|
||||
|
||||
%post
|
||||
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
||||
gconftool-2 --makefile-install-rule \
|
||||
%{_sysconfdir}/gconf/schemas/wuja.schema > /dev/null || :
|
||||
|
||||
|
||||
%preun
|
||||
if [ "$1" -eq 0 ]; then
|
||||
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
||||
gconftool-2 --makefile-uninstall-rule \
|
||||
%{_sysconfdir}/gconf/schemas/wuja.schema > /dev/null || :
|
||||
fi
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS
|
||||
%doc LICENSE
|
||||
%doc README
|
||||
%{_sysconfdir}/gconf/schemas/wuja.schema
|
||||
%{_bindir}/wuja
|
||||
%dir %{python_sitelib}/wuja
|
||||
%{python_sitelib}/wuja/*
|
||||
%{python_sitelib}/wuja*.egg-info
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.8-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.0.8-5
|
||||
- Rebuild for Python 2.6
|
||||
|
||||
* Sat Sep 6 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.0.8-4
|
||||
- fix license tag
|
||||
|
||||
* Fri Apr 04 2008 Devan Goodwin <dgoodwin@dangerouslyinc.com> 0.0.8-3
|
||||
- Minor fix for missing egg info file.
|
||||
|
||||
* Sat Jun 02 2007 Devan Goodwin <dgoodwin@dangerouslyinc.com> 0.0.8-1
|
||||
- Releasing 0.0.8.
|
||||
|
||||
* Sun Apr 29 2007 Devan Goodwin <dgoodwin@dangerouslyinc.com> 0.0.7-2
|
||||
- Updating spec file as per Fedora review suggestions.
|
||||
|
||||
* Thu Apr 26 2007 Devan Goodwin <dgoodwin@dangerouslyinc.com> 0.0.7-1
|
||||
- Updated to use _elementtree module in Python 2.5 if available.
|
||||
|
||||
* Mon Feb 22 2007 Devan Goodwin <dgoodwin@dangerouslyinc.com> 0.0.6-1
|
||||
- Renamed back to just wuja, not really a Gnome applet.
|
||||
|
||||
* Mon Feb 05 2007 Devan Goodwin <dgoodwin@dangerouslyinc.com> 0.0.6-1
|
||||
- Disabled threading for temporary bugfix release.
|
||||
|
||||
* Mon Feb 05 2007 Devan Goodwin <dgoodwin@dangerouslyinc.com> 0.0.5-3
|
||||
- Updates to .spec file.
|
||||
|
||||
* Sun Jan 21 2007 Devan Goodwin <dgoodwin@dangerouslyinc.com> 0.0.5-2
|
||||
- Renamed to gnome-applet-wuja.
|
||||
|
||||
* Wed Jan 17 2007 Devan Goodwin <dgoodwin@dangerouslyinc.com> 0.0.5-1
|
||||
- Initial packaging.
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue