资源简介
python-urx-master.zip
代码片段和文件信息
#!/usr/bin/python3
“““
hackish file to crreate deb from setup.py
“““
import subprocess
from email.utils import formatdate
import urx
DEBVERSION = urx.__version__
branch = subprocess.check_output(“git rev-parse --abbrev-ref HEAD“ shell=True)
branch = branch.decode()
branch = branch.strip()
branch = str(branch).replace(“‘“““)
rev = subprocess.check_output(“git log -1 --format=\‘%ad--%h\‘ --date=short“ shell=True)
rev = rev.decode()
rev = rev.strip()
rev = rev.replace(“‘“““)
#rev = rev.replace(“ “ “T“ 1)
#ev = rev.replace(“ “ “Z“ 1)
vcsstring = “git-“ + branch + “-“ + rev
def get_changelog(progname version changelog date):
“““
return a dummy changelog acceptable by debian script engine
“““
return “““%s (%s) unstable; urgency=low
%s
-- Olivier R-D %s “““ % (progname version changelog date)
def check_deb(name):
print(“checking if %s is installed“ % name)
subprocess.check_call(“dpkg -s %s > /dev/null“ % name shell=True)
if __name__ == “__main__“:
check_deb(“build-essential“)
f = open(“debian/changelog“ “w“)
f.write(get_changelog(“python-urx“ DEBVERSION + vcsstring “Updated to last changes in repository“ formatdate()))
f.close()
#now build package
#subprocess.check_call(“dpkg-buildpackage -rfakeroot -uc -us -b“ shell=True)
subprocess.check_call(“fakeroot dh binary --with python3python2“ shell=True)
subprocess.check_call(“dh clean“ shell=True)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-05-15 07:00 python-urx-master\
文件 27 2019-05-15 07:00 python-urx-master\.gitignore
文件 7651 2019-05-15 07:00 python-urx-master\COPYING
文件 3687 2019-05-15 07:00 python-urx-master\README.md
目录 0 2019-05-15 07:00 python-urx-master\debian\
文件 2 2019-05-15 07:00 python-urx-master\debian\compat
文件 613 2019-05-15 07:00 python-urx-master\debian\control
文件 9 2019-05-15 07:00 python-urx-master\debian\python-urx.pyinstall
文件 44 2019-05-15 07:00 python-urx-master\debian\python3-urx.install
文件 464 2019-05-15 07:00 python-urx-master\debian\rules
目录 0 2019-05-15 07:00 python-urx-master\docs\
文件 7421 2019-05-15 07:00 python-urx-master\docs\Makefile
文件 9300 2019-05-15 07:00 python-urx-master\docs\conf.py
文件 442 2019-05-15 07:00 python-urx-master\docs\index.rst
文件 144 2019-05-15 07:00 python-urx-master\docs\robot.rst
文件 148 2019-05-15 07:00 python-urx-master\docs\urrobot.rst
目录 0 2019-05-15 07:00 python-urx-master\examples\
文件 388 2019-05-15 07:00 python-urx-master\examples\get_robot.py
文件 4580 2019-05-15 07:00 python-urx-master\examples\joystick_control.py
文件 937 2019-05-15 07:00 python-urx-master\examples\matrices.py
文件 775 2019-05-15 07:00 python-urx-master\examples\simple.py
文件 2806 2019-05-15 07:00 python-urx-master\examples\spnav_control.py
文件 2420 2019-05-15 07:00 python-urx-master\examples\test_all.py
文件 914 2019-05-15 07:00 python-urx-master\examples\test_movep.py
文件 1478 2019-05-15 07:00 python-urx-master\make_deb.py
文件 40 2019-05-15 07:00 python-urx-master\make_windows_installer.bat
文件 1197 2019-05-15 07:00 python-urx-master\release.py
文件 778 2019-05-15 07:00 python-urx-master\setup.py
目录 0 2019-05-15 07:00 python-urx-master\tools\
文件 2177 2019-05-15 07:00 python-urx-master\tools\fakerobot.py
文件 385 2019-05-15 07:00 python-urx-master\tools\find_packet.py
............此处省略11个文件信息
相关资源
- python就业班.txt
- Python从入门到精通(明日科技出版)
- python基础视频地址.txt
- python从入门到实践课后试一试代码.
- LightBGM_Online1_87397.py
- 9b8dee39408392b66c4a776e4e7e05ce.py
- zw_基于python的网络爬虫设计.zip
- 将文件字母小写变大写并复制到其他
- python标准库中文版.tar
- dish_recognition_SDK.py
- python电子书大全.txt
- 鱼C小甲鱼零基础入门学习Python视频课
- 小甲鱼教程Python全部源码软件包课件
- EmailBoomFinal.py
- nude.py
- wenku_test.py
- 《Python3网络爬虫开发实战》中文PDF
-
unti
tled2.py - 疯狂Python讲义习题答案.rar
- 传智播客Python就业班2018.zip
- prepro.py
- python视频教程.txt
- python网盘.txt
- Python学习路线Python课程大纲Python视频
- 实现火车票查询python.zip
- python.txt
- Violent-Python-Source.zip
- Python学习教程哈工大、嵩天.txt
- python视频资料.zip
- python从入门到精通视频全60集百度云链
评论
共有 条评论