Updated git urls

This commit is contained in:
Beth Parker 2017-07-12 17:01:40 -05:00
parent 1ea7d9e0e5
commit 3b97509e07
4 changed files with 8 additions and 8 deletions

View file

@ -5,7 +5,7 @@ pkgrel=1
epoch= epoch=
pkgdesc="Build local repo from aur packages" pkgdesc="Build local repo from aur packages"
arch=('any') arch=('any')
url="https://github.com/etrombly/aur_repo" url="https://git.actcur.com/ejparker/aur_repo"
license=('GPL') license=('GPL')
groups=() groups=()
depends=('sudo' 'python' 'python-requests' 'python-sh' 'darkhttpd') depends=('sudo' 'python' 'python-requests' 'python-sh' 'darkhttpd')
@ -19,7 +19,7 @@ backup=()
options=() options=()
changelog= changelog=
install=aur_repo.install install=aur_repo.install
source=("$pkgname::git+https://github.com/etrombly/aur_repo") source=("$pkgname::git+https://git.actcur.com/ejparker/aur_repo")
noextract=() noextract=()
md5sums=('SKIP') md5sums=('SKIP')

View file

@ -4,7 +4,7 @@ Build repo from aur packages
I recommend running this in a container or VM to prevent installing unwanted packages. To install: I recommend running this in a container or VM to prevent installing unwanted packages. To install:
``` ```
git clone https://github.com/etrombly/aur_repo.git git clone https://git.actcur.com/ejparker/aur_repo
cd aur_repo cd aur_repo
makepkg -si makepkg -si
systemctl enable aur_repo --now systemctl enable aur_repo --now

View file

@ -1,5 +1,5 @@
pre_install() { pre_install() {
useradd -m -G wheel build useradd -m build
mkdir /build mkdir /build
chown build /build chown build /build
mkdir /repo mkdir /repo

View file

@ -3,11 +3,11 @@ from distutils.core import setup
setup( setup(
name='aur_repo', name='aur_repo',
version='0.1.0', version='0.1.0',
author='etrombly', author='ejparker',
author_email='etrombly@gmail.com', author_email='ejparker12@gmail.com',
packages=['package'], packages=['package'],
scripts=['bin/aur_repo'], scripts=['bin/aur_repo'],
url='https://www.github.com/etrombly/aur_repo', url='https://git.actcur.com/ejparker/aur_repo,
license='LICENSE', license='LICENSE',
description='Build local repo from aur packages', description='Build local repo from aur packages',
long_description="" long_description=""