2014-02-07 10:10:01 +00:00
|
|
|
package publish
|
2014-03-28 05:43:58 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/drone/drone/pkg/build/buildfile"
|
|
|
|
)
|
|
|
|
|
|
|
|
// set up the .pypirc file
|
|
|
|
var pypirc = `
|
|
|
|
cat <<EOF > $HOME/.pypirc
|
|
|
|
[pypirc]
|
|
|
|
servers = pypi
|
|
|
|
[server-login]
|
|
|
|
username:%s
|
|
|
|
password:%s
|
|
|
|
EOF`
|
|
|
|
|
2014-03-29 22:15:52 +00:00
|
|
|
var deployCmd = `
|
|
|
|
if [ -z $_PYPI_SETUP_PY ]
|
|
|
|
then
|
|
|
|
python $_PYPI_SETUP_PY sdist %s upload
|
|
|
|
if [ $? -ne 0 ]
|
|
|
|
then
|
|
|
|
echo "Deploy to PyPI failed - perhaps due to the version number not being incremented. Continuing..."
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Failed to find setup.py file"
|
|
|
|
fi
|
|
|
|
`
|
|
|
|
|
2014-03-28 05:43:58 +00:00
|
|
|
type PyPI struct {
|
2014-03-29 22:18:25 +00:00
|
|
|
Username string `yaml:"username,omitempty"`
|
|
|
|
Password string `yaml:"password,omitempty"`
|
|
|
|
Formats []string `yaml:"formats,omitempty"`
|
2014-03-28 05:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PyPI) Write(f *buildfile.Buildfile) {
|
|
|
|
if len(p.Username) == 0 || len(p.Password) == 0 {
|
2014-03-29 22:15:52 +00:00
|
|
|
// nothing to do if the config is fundamentally flawed
|
2014-03-28 05:43:58 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
f.WriteCmdSilent("echo 'publishing to PyPI...'")
|
|
|
|
|
|
|
|
// find the setup.py file
|
|
|
|
f.WriteCmdSilent("_PYPI_SETUP_PY=$(find . -name 'setup.py')")
|
|
|
|
|
2014-03-29 22:15:52 +00:00
|
|
|
// build the .pypirc file that pypi expects
|
2014-03-28 05:43:58 +00:00
|
|
|
f.WriteCmdSilent(fmt.Sprintf(pypirc, p.Username, p.Password))
|
2014-03-29 22:15:52 +00:00
|
|
|
formatStr := p.BuildFormatStr()
|
2014-03-28 05:43:58 +00:00
|
|
|
|
|
|
|
// if we found the setup.py file use it to deploy
|
2014-03-29 22:15:52 +00:00
|
|
|
f.WriteCmdSilent(fmt.Sprintf(deployCmd, formatStr))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PyPI) BuildFormatStr() string {
|
|
|
|
if len(p.Formats) == 0 {
|
|
|
|
// the format parameter is optional - if it's not here,
|
|
|
|
// omit the format string completely.
|
|
|
|
return ""
|
|
|
|
}
|
2014-03-29 22:17:27 +00:00
|
|
|
fmtStr := "--formats "
|
2014-03-29 22:15:52 +00:00
|
|
|
for i := range p.Formats {
|
|
|
|
fmtStr += p.Formats[i] + ","
|
|
|
|
}
|
2014-03-29 22:18:25 +00:00
|
|
|
return fmtStr[:len(fmtStr)-1]
|
2014-03-28 05:43:58 +00:00
|
|
|
}
|