Compare commits
No commits in common. "917dd8f9823263930dbb8cd4bb33076ee6a8737e" and "b36108245a2b428bfdfd90413c81ad6250d0e3d6" have entirely different histories.
917dd8f982
...
b36108245a
@ -1,11 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
|
||||
# CI Ebuild commit tester
|
||||
# Run this in a overlay directory.
|
||||
# This script uses pkgcheck and repoman
|
||||
|
@ -1,10 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
# Clean md5-cache from the overlay directory
|
||||
|
||||
|
||||
|
@ -1,11 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
|
||||
trap 'exit 128' INT
|
||||
set -e
|
||||
export PATH
|
||||
|
@ -1,11 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
|
||||
trap 'exit 128' INT
|
||||
export PATH
|
||||
|
||||
|
@ -1,10 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
# Source this to enter the Eprefix environment
|
||||
# Like this for example:
|
||||
# $ source $HOME/gentoo/eprefix-activate
|
||||
|
@ -1,21 +1,17 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
|
||||
set -o pipefail
|
||||
trap 'exit 128' INT
|
||||
trap 'exit 1' INT
|
||||
export PATH
|
||||
|
||||
|
||||
emsg() {
|
||||
emsg()
|
||||
{
|
||||
echo "$(tput bold)$(tput setaf 6)>>> $(tput setaf 4)$(date +%H:%M:%S)$(tput setaf 7) ${*} $(tput sgr0)"
|
||||
}
|
||||
|
||||
edie() {
|
||||
edie()
|
||||
{
|
||||
if [ -z "${1}" ]
|
||||
then
|
||||
emsg "$(tput setaf 1)Failed: last command"
|
||||
@ -24,16 +20,17 @@ edie() {
|
||||
fi
|
||||
exit 1
|
||||
}
|
||||
erun() {
|
||||
erun()
|
||||
{
|
||||
emsg "Running: ${*}"
|
||||
"${@}" | busybox ts '>>> %H:%M:%S' || edie "${@}"
|
||||
}
|
||||
|
||||
einto() {
|
||||
einto()
|
||||
{
|
||||
pushd "${1}" >/dev/null || edie "Could not open ${1}"
|
||||
}
|
||||
|
||||
eback() {
|
||||
eback()
|
||||
{
|
||||
popd >/dev/null || edie
|
||||
}
|
||||
|
||||
|
@ -1,10 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
# Scan with euscan + log
|
||||
# Requires:
|
||||
# - eix
|
||||
|
@ -1,10 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
# Use this script to check which pkgs in a overlay might
|
||||
# be redundant - are in overlays other than the tested one
|
||||
|
||||
|
5
src/pn
5
src/pn
@ -1,11 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
|
||||
trap 'exit 128' INT
|
||||
|
||||
|
||||
|
@ -1,11 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
|
||||
trap 'exit 128' INT
|
||||
export PATH
|
||||
|
||||
|
@ -1,10 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
# CI Ebuild commit tester
|
||||
# Run this in a overlay directory.
|
||||
# This script uses repoman
|
||||
|
@ -1,20 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
|
||||
trap 'exit 128' INT
|
||||
export PATH
|
||||
|
||||
|
||||
git submodule update --init --recursive
|
||||
|
||||
git submodule update --remote --merge
|
||||
git add .
|
||||
|
||||
git commit --signoff --message="submodules update"
|
||||
git pull --verbose
|
||||
git push --verbose
|
||||
|
Loading…
Reference in New Issue
Block a user