aboutsummaryrefslogblamecommitdiffstats
path: root/upload
blob: 756378be222bb16afbb97553201600dcd53b9b1d (plain) (tree)
1
2
3
4
5
6





                      











                                              

                                 







                                                          


                                                                   


                   

                                     
  

                                      


                




                                 


  








                                             






                         













                                                                    
    





                                                    
  
#!/bin/bash

set -e

cd "$(dirname "${0}")"

message=
skip_build=n

for arg;
	if test "${arg}" = skip_build; then
		skip_build=y
	elif test "${arg::8}" = message=; then
		message="${arg:8}"
	fi
do

if test ! "${skip_build}" = y; then
	makepkg --install --clean
fi

newpkg=0
pkgname="$(. PKGBUILD && echo "${pkgname}")"
pkgver="$(. PKGBUILD && echo "${pkgver}")"
pkgrel="$(pkgrel=1 && . PKGBUILD && echo "${pkgrel}")"
epoch="$(epoch=0 && . PKGBUILD && echo "${epoch}")"
install="$(install="" && . PKGBUILD && echo "${install}")"

if test ! -d .aur; then
	newpkg=1
	git clone "ssh://aur@aur.archlinux.org/${pkgname}.git" .aur
fi

version="${pkgver}"
if test ! "${epoch}" = 0; then
	version="${epoch}:${version}"
fi
if test ! "${pkgrel}" = 1; then
	version="${version}-${pkgrel}"
fi

cp PKGBUILD .aur
if test ! "${install}" = ""; then
	cp "${install}" .aur
	cd .aur
	git add "${install}"
	cd ..
fi

(
	. PKGBUILD
	cd .aur
	for file in "${source[@]}"; do
		if test -f ../"${file}"; then
		    cp ../"${file}" .
		    git add "${file}"
		fi
	done
	cd ..
)

cd .aur

mksrcinfo
git add PKGBUILD .SRCINFO

if test ${newpkg} = 1; then
	if test -z "${message}"; then
		git commit -m "Initial import, version ${version}"
	else
		git commit -m "${message}"
	fi
	git push origin master
elif test ! "${pkgrel}" = 1; then
	if test -z "${message}"; then
		git commit -m "Update package release to ${version}"
	else
		git commit -m "${message}"
	fi
	git push
else
	if test -z "${message}"; then
		git commit -m "Update to ${version}"
	else
		git commit -m "${message}"
	fi
	git push
fi