From 05f440df5e2dc72d65424ab58fc5c4a96df6fc11 Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Tue, 19 Oct 2010 10:21:03 -0300 Subject: * Moved configuration strings to libretools.conf * Added license --- librerelease | 52 +++++++++++++++++++++++++--------------------------- 1 file changed, 25 insertions(+), 27 deletions(-) (limited to 'librerelease') diff --git a/librerelease b/librerelease index 8cfa877..c27c3a2 100755 --- a/librerelease +++ b/librerelease @@ -1,30 +1,28 @@ #!/bin/bash - # Librerelease # Uploads packages into free/ repo -# Config -# SSH host, it's better if you have it configured on ~/.ssh/config -# with ControlMaster auto (and a shell opened somewhere else) -# -# Example: -# Host * -# Protocol 2 -# ControlMaster auto -# ControlPath /tmp/ssh-%r@%h:%p -# -# Host parabola -# Port 22 -# HostName parabolagnulinux.org -# User parabolavnx -# IdentityFile ~/.ssh/id_rsa -# -# $ cd pkgbuild/dir -# $ ssh parabola -fN -# $ librerelease extra - -host=parabola -dir=parabolagnulinux.org/repo/free +# Copyright 2010 Nicolás Reynolds + +# ---------- GNU General Public License 3 ---------- + +# This file is part of Parabola. + +# Parabola is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# Parabola is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with Parabola. If not, see . + +source /etc/libretools.conf + batchfile=/tmp/librerelease_batchfile.$$ # End Config @@ -63,16 +61,16 @@ for _arch in ${arch[@]}; do pkgfile="$PKGDEST/$pkg-$pkgver-$pkgrel-$_arch$PKGEXT" if [ -e "$pkgfile" ]; then # This has to be moved to repo-maintainer - ssh parabola mv $dir/$repo/os/$_arch/$pkg-*-*-$_arch$PKGEXT $dir/old/ + ssh parabola mv ${PARABOLAHOST}/$repo/os/$_arch/$pkg-*-*-$_arch$PKGEXT ${LIBREDESTDIR}/old/ - to_sftp "put $pkgfile $dir/$repo/os/$_arch/" + to_sftp "put $pkgfile ${PARABOLAHOST}/$repo/os/$_arch/" fi done done makepkg --source -to_sftp "put $SRCPKGDEST/$pkgname-$pkgver-$pkgrel$SRCEXT ${dir%free}/pkgbuilds/$repo" +to_sftp "put $SRCPKGDEST/$pkgname-$pkgver-$pkgrel$SRCEXT ${LIBRESRCDIR}/$repo" -sftp -b ${batchfile} $host +sftp -b ${batchfile} ${PARABOLAHOST} exit 0 -- cgit v1.2.3-54-g00ecf