blob: 6e03a3e819c7ca17e8f6569d527c76f867787309 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Maintainer: Daniel Maslowski <info@orangecms.org>
# Co-Maintainer: Ke Liu <specter119@gmail.com>
pkgname=python-conda
_name=${pkgname#python-}
pkgver=4.12.0
pkgrel=1
pkgdesc="OS-agnostic, system-level binary package manager and ecosystem https://conda.io"
arch=('any')
url="https://github.com/conda/conda"
license=('BSD')
depends=(
'python>=3.6'
'python-conda-package-handling'
'python-pycosat>=0.6.3'
'python-requests>=2.12.4'
'python-ruamel-yaml>=0.11.14'
)
makedepends=('python-setuptools')
provides=('python-conda' 'python-conda-env')
options=(!emptydirs)
backup=(etc/conda/condarc)
source=(
$_name-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz
)
sha512sums=('b8b51758a3edb80d0db72d404226a959ca3e6224ce23d2f46e5246537c6461f9ef1801b92901995e52dadef5015c3aa42019433b6f61058e40777b29d203b7cc')
prepare() {
cd $srcdir/${_name}-$pkgver
echo $pkgver > conda/.version
# sed -i "s/package_files(\'conda\/shell') + //" setup.py
# sed -i 's/$_CONDA_ROOT//' conda/shell/bin/{de,}activate
sed -i 's/env python/python3/' conda/shell/bin/conda
sed 's/conda.cli/conda_env.cli.main/' conda/shell/bin/conda > conda/shell/bin/conda-env
sed -i '3s/^/set _CONDA_EXE=\/usr\/bin\/conda\n/' conda/shell/etc/profile.d/conda.csh
sed -i '3s/^/export CONDA_EXE=\/usr\/bin\/conda\n/' conda/shell/etc/profile.d/conda.sh
sed -i '8s/^/set -l CONDA_EXE \/usr\/bin\/conda\n/' conda/shell/etc/fish/conf.d/conda.fish
# echo 'set -l CONDA_EXE /usr/bin/conda' | cat - conda/shell/etc/fish/conf.d/conda.fish > conda.fish
# echo 'set _CONDA_EXE=/usr/bin/conda' | cat - conda/shell/etc/profile.d/conda.csh > conda.csh
# echo 'export CONDA_EXE=/usr/bin/conda' | cat - conda/shell/etc/profile.d/conda.sh > conda.sh
echo -e 'envs_dirs:\n - ~/.conda/envs\npkgs_dirs:\n - ~/.conda/pkgs' > condarc
}
build() {
cd $srcdir/${_name}-$pkgver
python setup.py build
}
package() {
cd $srcdir/${_name}-$pkgver
python setup.py install --root=$pkgdir --optimize=1 --skip-build
rm -f conda/shell/bin/{,de}activate
# for _bin in $(ls conda/shell/bin); do
# install -Dm 655 conda/shell/bin/$_bin $pkgdir/usr/bin/$_bin
# done
# install -Dm 644 conda.fish $pkgdir/usr/share/fish/functions/conda.fish
# install -Dm 644 conda.csh $pkgdir/etc/profile.d/conda.csh
# install -Dm 644 conda.sh $pkgdir/etc/profile.d/conda.sh
mkdir -p $pkgdir/{usr/share/fish/functions,etc/profile.d}
_dir_sitepackage=$(python -c 'import sysconfig; print(sysconfig.get_paths()["purelib"])')
ln -s ${_dir_sitepackage}/conda/shell/etc/fish/conf.d/conda.fish $pkgdir/usr/share/fish/functions/conda.fish
ln -s ${_dir_sitepackage}/conda/shell/etc/profile.d/conda.csh $pkgdir/etc/profile.d/conda.csh
ln -s ${_dir_sitepackage}/conda/shell/etc/profile.d/conda.sh $pkgdir/etc/profile.d/conda.sh
install -Dm 644 condarc $pkgdir/etc/conda/condarc
install -Dm 644 LICENSE.txt $pkgdir/usr/share/licenses/${pkgname}/LICENSE.txt
}
# vim:set ts=2 sw=2 et:
|