Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37844058
en ru br
Репозитории ALT
5.1: 2.2.1-alt5_0.1.Release_2_2_1.1.2jpp5
4.1: 2.2-alt4_0.rc2.1jpp1.7
4.0: 2.2-alt4_0.rc2.1jpp1.7
www.altlinux.org/Changes

Группа :: Система/Интернационализация
Пакет: jython

 Главная   Изменения   Спек   Патчи   Sources   Загрузить   Gear   Bugs and FR  Repocop 

Packager: Igor Vlasenko <viy at altlinux.ru>
#BuildRequires(pre): j2se-jdbc = 1.4.2
BuildRequires: jline
# recommends
Requires: jline libreadline-java
AutoReq: yes, nopython
BuildRequires: /proc
BuildRequires: jpackage-compat
Epoch: 0
%{expand: %%define pyver %(python -c 'import sys;print(sys.version[0:3])')}

%define cpython_version    %{pyver}
%define pyxml_version      0.8.3
%define svn_tag            Release_2_2_1

%define gcj_support 0

Name:                      jython
Version:                   2.2.1
Release:                   alt5_0.1.Release_2_2_1.1.2jpp5
Summary:                   Jython is an implementation of Python written in pure Java.
License:                   BSD
URL:                       http://www.jython.org/
# Use the included fetch-jython.sh script to generate the source drop
# for jython 2.2.1
# sh fetch-jython.sh \
# jython https://jython.svn.sourceforge.net/svnroot Release_2_2_1
#
Source0:                   %{name}-fetched-src-%{svn_tag}.tar.bz2
Source2:                   fetch-%{name}.sh
Patch0:                    %{name}-cachedir.patch
# Make javadoc and copy-full tasks not depend upon "full-build"
# Also, copy python's license from source directory and not
# ${python.home}
Patch1:                    %{name}-nofullbuildpath.patch
Requires: jpackage-utils >= 0:1.5
Requires: oro
Requires: servlet
Requires: python >= %{cpython_version}
Requires: libreadline-java >= 0.8.0-16
Requires: mysql-connector-java
BuildRequires: ant
BuildRequires: ht2html
BuildRequires: libreadline-java >= 0.8.0-16
BuildRequires: mysql-connector-java
BuildRequires: oro
BuildRequires: python >= %{cpython_version}
BuildRequires: python-module-PyXML >= %{pyxml_version}
BuildRequires: servlet
%if %{gcj_support}
BuildRequires: java-gcj-compat-devel >= 1.0.31
Requires(post): java-gcj-compat >= 1.0.31
Requires(postun): java-gcj-compat >= 1.0.31
%else
%endif
Group:                     System/Internationalization
BuildArch: noarch

%description
Jython is an implementation of the high-level, dynamic, object-oriented
language Python seamlessly integrated with the Java platform. The
predecessor to Jython, JPython, is certified as 100%% Pure Java. Jython is
freely available for both commercial and non-commercial use and is
distributed with source code. Jython is complementary to Java and is
especially suited for the following tasks: Embedded scripting - Java
programmers can add the Jython libraries to their system to allow end
users to write simple or complicated scripts that add functionality to the
application. Interactive experimentation - Jython provides an interactive
interpreter that can be used to interact with Java packages or with
running Java applications. This allows programmers to experiment and debug
any Java system using Jython. Rapid application development - Python
programs are typically 2-10X shorter than the equivalent Java program.
This translates directly to increased programmer productivity. The
seamless interaction between Python and Java allows developers to freely
mix the two languages both during development and in shipping products.

%package javadoc
Summary:           Javadoc for %{name}
Group:             Development/Java

%description javadoc
API documentation for %{name}.

%package manual
Summary:           Manual for %{name}
Group:             Development/Java

%description manual
Usage documentation for %{name}.

%package demo
Summary:           Demo for %{name}
Requires: %{name} = %{version}-%{release}
Group:             Development/Java
AutoReq: yes, nopython
#AutoProv: yes, nopython

%description demo
Demonstrations and samples for %{name}.

%prep
%setup -q -n %{name}-svn-%{svn_tag}
%patch0 -p1
%patch1 -p1

%build
export CLASSPATH=$(build-classpath mysql-connector-java oro servlet)
# FIXME: fix jpackage-utils to handle multilib correctly
export CLASSPATH=$CLASSPATH:%{_libdir}/libreadline-java/libreadline-java.jar

rm -rf org/apache

perl -p -i -e 's|execon|apply|g' build.xml

ant \
 -Dpython.home=%{_bindir} \
 -Dht2html.dir=%{_datadir}/ht2html \
 -Dpython.lib=./CPythonLib \
 -Dpython.exe=%{_bindir}/python \
 -DPyXmlHome=%{_libdir}/python%pyver \
 -Dtargetver=1.3 \
 copy-dist


# remove #! from python files

pushd dist
 for f in `find . -name '*.py'`
 do
   sed --in-place  "s:#!\s*/usr.*::" $f
 done
popd

%install

# jar

install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
install -m 644 dist/%{name}.jar \
 $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
pushd $RPM_BUILD_ROOT%{_javadir}
 for jar in *-%{version}*
 do
   ln -sf ${jar} ${jar/-%{version}/}
 done
popd

# javadoc

install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
cp -pr dist/Doc/javadoc/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
# data
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}
# these are not supposed to be distributed
find dist/Lib -type d -name test | xargs rm -rf

cp -pr dist/Lib $RPM_BUILD_ROOT%{_datadir}/%{name}
cp -pr dist/Tools $RPM_BUILD_ROOT%{_datadir}/%{name}
# demo
cp -pr dist/Demo $RPM_BUILD_ROOT%{_datadir}/%{name}
# manual
rm -rf dist/Doc/javadoc
mv dist/Doc %{name}-manual-%{version}


# registry

install -m 644 registry $RPM_BUILD_ROOT%{_datadir}/%{name}
# scripts
install -d $RPM_BUILD_ROOT%{_bindir}

cat > $RPM_BUILD_ROOT%{_bindir}/%{name} << EOF
#!/bin/sh
#
# %{name} script
# JPackage Project (http://jpackage.sourceforge.net)

# Source functions library

. %{_datadir}/java-utils/java-functions

# Source system prefs

if [ -f %{_sysconfdir}/%{name}.conf ] ; then
 . %{_sysconfdir}/%{name}.conf
fi

# Source user prefs

if [ -f \$HOME/.%{name}rc ] ; then
 . \$HOME/.%{name}rc
fi

# Configuration

MAIN_CLASS=org.python.util.%{name}
BASE_FLAGS=-Dpython.home=%{_datadir}/%{name}
BASE_JARS="%{name} oro servlet mysql-connector-java"

BASE_FLAGS="\$BASE_FLAGS -Dpython.console=org.python.util.ReadlineConsole"
BASE_FLAGS="\$BASE_FLAGS -Djava.library.path=%{_libdir}/libreadline-java"
BASE_FLAGS="\$BASE_FLAGS -Dpython.console.readlinelib=Editline"

# Set parameters

set_jvm
CLASSPATH=$CLASSPATH:%{_libdir}/libreadline-java/libreadline-java.jar
set_classpath \$BASE_JARS
set_flags \$BASE_FLAGS
set_options \$BASE_OPTIONS

# Let's start

run "\$ at "
EOF

cat > $RPM_BUILD_ROOT%{_bindir}/%{name}c << EOF
#!/bin/sh
#
# %{name}c script
# JPackage Project (http://jpackage.sourceforge.net)

%{_bindir}/%{name} %{_datadir}/%{name}/Tools/%{name}c/%{name}c.py "\$ at "
EOF


# Natively compile

%if %{gcj_support}
# Exclude examples from native compilation
%{_bindir}/aot-compile-rpm \
 --exclude %{_datadir}/%{name}/Demo/jreload \
 --exclude %{_datadir}/%{name}/Demo/jreload/example.jar
%endif

mkdir -p $RPM_BUILD_ROOT`dirname /etc/jython.conf`
touch $RPM_BUILD_ROOT/etc/jython.conf

mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/jython/cachedir/packages
ln -s $(relative %{_localstatedir}/jython/cachedir %{_datadir}/jython/) $RPM_BUILD_ROOT%{_datadir}/jython/

%add_to_maven_depmap %{name} %{name} %{version} JPP %{name}                    
%add_to_maven_depmap org.python %{name} %{version} JPP %{name}                  

# poms

install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/maven2/poms
cat > $RPM_BUILD_ROOT%{_datadir}/maven2/poms/JPP.%{name}.pom <<'EOF'
<project>
 <modelVersion>4.0.0</modelVersion>
 <groupId>jython</groupId>
 <artifactId>jython</artifactId>
 <version>%version</version>

 <distributionManagement>
   <relocation>
     <groupId>org.python</groupId>
   </relocation>
 </distributionManagement>

</project>
EOF

%post

echo "creating jython cache..."
echo | /usr/bin/jython ||:

%preun
# cleanup
if [ "$1" -eq 0 ]
then
   rm %{_localstatedir}/jython/cachedir/packages/*.{pkc,idx}
   find /usr/share/jython/Lib -name "*py.class" -delete
fi || :


%files
%doc ACKNOWLEDGMENTS NEWS LICENSE.txt README.txt
%attr(0755,root,root) %{_bindir}/%{name}
%attr(0755,root,root) %{_bindir}/%{name}c
%{_javadir}/*
%dir %{_datadir}/%{name}
%{_datadir}/%{name}/Lib
%{_datadir}/%{name}/Tools
%{_datadir}/%{name}/registry

%if %{gcj_support}
%dir %{_libdir}/gcj/%{name}
%{_libdir}/gcj/%{name}/jython-%{version}.jar*
%endif
%config(noreplace,missingok) /etc/jython.conf

%{_localstatedir}/jython
# is it worth ghosting?
#%ghost %{_localstatedir}/jython/cachedir/packages
%{_datadir}/jython/cachedir
# pom
%{_datadir}/maven2/poms/*
%{_mavendepmapfragdir}/*

%files javadoc
%doc %{_javadocdir}/%{name}-%{version}

%files manual
%doc %{name}-manual-%{version}

%files demo
%doc %{_datadir}/%{name}/Demo

%changelog

Полный changelog можно просмотреть здесь

 
дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
текущий майнтейнер: Michael Shigorin