2 Star 0 Fork 0

mirrors_anthonyfok/stdeb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test-pypi-install.sh 987 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
set -e
if [ "$UID" -ne "0" ]; then
echo "$0 must be run as root"
exit 1
fi
# Package with source tarball on PyPI:
pypi-install pyflakes --verbose=2
dpkg --purge python-pyflakes
# This test fails on Ubuntu 12.04 due to what looks like a bug with
# "dh_auto_clean -O--buildsystem=python_distutils" not changing into the
# directory with setup.py and thus its "import prober" fails. That's not
# an stdeb bug. We could run this test on later versions of Debian/Ubuntu.
#
# Package with no source tarball on PyPI: (v 0.6.2, 2009-12-30)
#pypi-install posix_ipc --release=0.6.2 --verbose=2 --allow-unsafe-download
#dpkg --purge python-posixipc
echo "skipping known failure tests"
exit 0
# A pure python package with source tarball on PyPI. (This fails if
# the Debian/Ubuntu original "pyro" package is already
# installed. This should use apt-file to find that binary package is
# "pyro".)
apt-get install pyro # get upstream version
pypi-install Pyro --verbose=2
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_anthonyfok/stdeb.git
[email protected]:mirrors_anthonyfok/stdeb.git
mirrors_anthonyfok
stdeb
stdeb
master

搜索帮助