mirror of
https://github.com/archlinux-jerry/buildbot
synced 2024-11-22 13:00:40 +08:00
13 lines
309 B
Python
13 lines
309 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
import logging
|
|
from utils import bash
|
|
|
|
logger = logging.getLogger(name='package')
|
|
|
|
|
|
# makepkg -o
|
|
# makepkg -e
|
|
# makepkg --nosign
|
|
# makepkg --packagelist
|
|
# gpg --default-key {GPG_KEY} --no-armor --pinentry-mode loopback --passphrase '' --detach-sign --yes -- aaa
|