我维护的colout

####前言
一直在努力进步,其实也在想做点项目,也作了一些东西,最近的计划就是看celery,pelican,然后开始看django,看requests,
其实任务还是很重的。
上段时间github转悠,发现一个挺有意思的东西colout:一个python的命令行显示彩色字符的软件,支持正则,支持各种语法的插件,但是作者呢..怎么说呢
也算是我为了练手,给他维护这个项目,
####我维护的内容
正如我给它修改的README

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

Pypi(the Python Package Index)

sudo pip install colout

or

sudo easy_install colout

Ubuntu 13.04's ppa

sudo add-apt-repository ppa:ciici123/colout
sudo apt-get update
sudo apt-get/aptitude install colout

Gentoo overlay

1. Install layman

echo "app-portage/layman git" >> $EPREFIX/etc/portage/package.Use
sudo emerge layman

2. Edit `$EPREFIX/etc/layman/layman.cfg`. Add a line after

overlays : http://www.gentoo.org/proj/en/overlays/repositories.xml

so that it becomes

overlays : http://www.gentoo.org/proj/en/overlays/repositories.xml
file://$EPREFIX/var/lib/layman/my-list.xml

3. Edit `$EPREFIX/var/lib/layman/my-list.xml`. The content of this file should be:

<?xml version="1.0" ?>
<repositories version="1.0">
<repo priority="50" quality="experimental" status="unofficial">
<name>dongwm-overlay</name>
<description>dongweiming's gentoo overlay</description>
<homepage>https://github.com/dongweiming/dongwm-overlay.git</homepage>
<owner>
<email>ciici1234@hotmail.com</email>
</owner>
<source type="git">git://github.com/dongweiming/dongwm-overlay.git</source>
</repo>
</repositories>

4. Add this overlay and installation

layman -a dongwm-overlay && sudo emerge colout

其实现在已经放到了gentoo的portage主干,你可以直接安装

1
2

sudo emerge colout

####也就是说我维护了pypi,ubuntu’s ppa和gentoo
这个经验讲起来,很多很多,时间有点长了…

  • pypi
    我这部分源码是从作者项目拿下来的分支colout,
    里面加了一些必要的东西,还有setup.py的格式
    其中的’classifiers’是从官网文档分析的classifiers,
    而且要注意的是,根据
    最近的PEP438,
    以后的pypi不要容许来自外部软件的网站连接,直接使用pypi的地址已加快速度
    #####流程
  1. 注册pypi,你可以去网站 也可以python setup.py register
  2. 添加相关文件和setup.py
  3. python setup.py sdist upload #上传到pypi
    技巧:
    你可以写.pypirc配置文件就不用每次输入帐号密码了
1
2
3
4
5
6
7

[distutils]
index-servers = pypi

[pypi]
username:xxx
password:xxx

表示构建dist包后并且上传,当然你还能再加’bdist_egg’ 构建eggs

  • gentoo 本来就是我的一个layman,但是看来gentoo的开发者也挺喜欢这个小玩意,后来把它放在了主干
    流程:
  1. 写ebuild脚本 请参看我的overlay for Gentoo
  2. 假如你想用第三方的overlay,上面README有安装方法,假如你想放到gentoo主干,继续…
  3. 建立一个Bugzilla帐号
  4. 创建一个bug,填写表单,附件加入你写的那个ebuild脚本,看我的例子app-misc/colout - a simple command to add colors to a text stream in your terminal
    技巧:
  • ubuntu ppa 是最闹残,最无奈的,源文件在我虚拟机里面,有时间我再补

版权声明:本文由 董伟明 原创,未经作者授权禁止任何微信公众号和向掘金(juejin.im)转载,技术博客转载采用 保留署名-非商业性使用-禁止演绎 4.0-国际许可协议
python