Compare commits
71 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
43b4972eb3 | ||
|
685341c055 |
|||
|
10c82f1be1 |
|||
|
fdfe532aa1 |
|||
|
|
bc05855afe | ||
|
|
709b9f8a5d | ||
|
|
2a10a1fe0a | ||
|
b83781adaa |
|||
|
|
d637048573 | ||
| f52b8aa0d3 | |||
|
|
9fbefc4082 | ||
|
|
9276d6eacf | ||
|
|
f85dadc199 | ||
|
|
067d4aff09 | ||
|
|
5c92de0c1b | ||
|
|
a4e3bf9e10 | ||
| c9683791e3 | |||
|
|
09c74d66f0 | ||
| f5c97512fd | |||
| e8e0f90aa3 | |||
| ef44d9bc89 | |||
| cdb020ced7 | |||
| f3af3015e9 | |||
| 36865f0049 | |||
| 17d2a6a849 | |||
|
|
c87f673839 | ||
| f91e6810fa | |||
| 6925f1b44d | |||
|
|
e6759fe76f | ||
| 3ad50d8d52 | |||
| 828ba3195d | |||
| 5a8d3c0a7c | |||
| 260588d8ce | |||
| 82974ebc42 | |||
|
|
4e7cd5b226 | ||
| c734330ef9 | |||
| 19bfa20fed | |||
|
|
d9bd7dc958 | ||
|
|
c377dbcc93 | ||
|
|
5662d15901 | ||
|
|
73ec6b19bb | ||
|
|
9527bba711 | ||
|
|
a10208afe0 | ||
|
|
f77a7becf8 | ||
| 396698162e | |||
|
|
6a15a9abb5 | ||
| f6612b9a27 | |||
| 873b2fdace | |||
| 2f456c31d2 | |||
|
|
70db78cf25 | ||
|
|
88f7e21305 | ||
| 378e51e30d | |||
| 121fdbfc32 | |||
| 0b017902eb | |||
| 0e66abf491 | |||
|
|
4498e156a9 | ||
|
|
ca68768a4a | ||
| 468210fe6d | |||
| 016c06c431 | |||
|
|
ebc1a7e831 | ||
|
|
eda48f6355 | ||
| 4aba7384fc | |||
| 71b237d101 | |||
| 320914aa8e | |||
| 94386e95f7 | |||
| 76cfa3f7b8 | |||
| 0518928a98 | |||
| fb9bcfb02b | |||
| 3fff20e47d | |||
| c5214a1c30 | |||
| 0770170d68 |
5 changed files with 1 additions and 100 deletions
|
|
@ -1 +0,0 @@
|
|||
zeroinstall-injector-0.23.tar.gz.gpg
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: zeroinstall-injector
|
||||
# $Id$
|
||||
NAME := zeroinstall-injector
|
||||
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 @@
|
|||
obsoleted by 0install
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
52ad9f0b49e3f35ff9490d5a3fc98843 zeroinstall-injector-0.23.tar.gz.gpg
|
||||
|
|
@ -1,77 +0,0 @@
|
|||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
|
||||
Name: zeroinstall-injector
|
||||
Version: 0.23
|
||||
Release: 1%{?dist}
|
||||
Summary: The Zero Install Injector (0launch)
|
||||
|
||||
Group: Applications/System
|
||||
License: LGPL
|
||||
URL: http://0install.net
|
||||
Source0: http://osdn.dl.sf.net/sourceforge/zero-install/%{name}-%{version}.tar.gz.gpg
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python gnupg
|
||||
Requires: python-abi = %(%{__python} -c "import sys ; print sys.version[:3]")
|
||||
Requires: PyXML pygtk2 gnupg
|
||||
|
||||
%description
|
||||
A running process is created by combining many different libraries (and other
|
||||
components). In the Zero Install world, we have all versions of each library
|
||||
available at all times. The problem then is how to choose which versions to
|
||||
use.
|
||||
|
||||
The injector solves this problem by selecting components to meet a program's
|
||||
requirements, according to a policy you give it. The injector finds out which
|
||||
versions are available, and downloads and runs the ones you choose.
|
||||
|
||||
%prep
|
||||
gpg --decrypt %{SOURCE0} | gzip -cd - | tar xvf -
|
||||
%setup -q -T -D
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
%{__python} setup.py install -O1 --skip-build --install-data %{_datadir} --root $RPM_BUILD_ROOT
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc COPYING README
|
||||
%{_bindir}/0*
|
||||
%dir %{python_sitelib}/zeroinstall/
|
||||
%dir %{python_sitelib}/zeroinstall/0launch-gui/
|
||||
%dir %{python_sitelib}/zeroinstall/injector/
|
||||
%dir %{python_sitelib}/zeroinstall/zerostore/
|
||||
%ghost %{python_sitelib}/zeroinstall/*.pyo
|
||||
%{python_sitelib}/zeroinstall/*.py
|
||||
%{python_sitelib}/zeroinstall/*.pyc
|
||||
%ghost %{python_sitelib}/zeroinstall/*/*.pyo
|
||||
%{python_sitelib}/zeroinstall/0launch-gui/0launch-gui
|
||||
%{python_sitelib}/zeroinstall/0launch-gui/README
|
||||
%{python_sitelib}/zeroinstall/0launch-gui/ZeroInstall-GUI.xml
|
||||
%{python_sitelib}/zeroinstall/*/*.py
|
||||
%{python_sitelib}/zeroinstall/*/*.pyc
|
||||
%{_mandir}/man1/0*
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun Oct 8 2006 Michel Salim <michel.salim@gmail.com> 0.23-1
|
||||
- Update to 0.23
|
||||
|
||||
* Sun Mar 5 2006 Michel Salim <michel.salim@gmail.com> 0.18-4
|
||||
- Removed left-behind pushd and popd
|
||||
|
||||
* Sat Feb 25 2006 Michel Salim <michel.salim@gmail.com> 0.18-3
|
||||
- Add Python-related requirements, BuildReq on gnupg to decrypt upstream source
|
||||
|
||||
* Sat Feb 18 2006 Michel Salim <michel.salim@gmail.com> 0.18-2
|
||||
- Use _mandir, discard CFLAGS and unused python_sitearch definition
|
||||
|
||||
* Thu Feb 16 2006 Michel Salim <michel.salim@gmail.com> 0.18-1
|
||||
- Initial Fedora Extras release, based on upstream spec contributed by Juan Carlos Jimenez Garcia
|
||||
Loading…
Add table
Add a link
Reference in a new issue