diff options
author | Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com> | 2021-04-02 11:31:24 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-04-02 11:31:24 +0700 |
commit | 7b068472315792d541c247a734d196786dd1673b (patch) | |
tree | b133902b56a833c8064f278e1a0c1e46599918f4 | |
parent | d435006e1939d94d4526cfdcc95a2465e605f564 (diff) |
development/git-extras: Added (GIT Utilities).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | development/git-extras/README | 5 | ||||
-rw-r--r-- | development/git-extras/git-extras.SlackBuild | 69 | ||||
-rw-r--r-- | development/git-extras/git-extras.info | 10 | ||||
-rw-r--r-- | development/git-extras/slack-desc | 19 |
4 files changed, 103 insertions, 0 deletions
diff --git a/development/git-extras/README b/development/git-extras/README new file mode 100644 index 000000000000..6ab459aab178 --- /dev/null +++ b/development/git-extras/README @@ -0,0 +1,5 @@ +GIT utilities + +Repo summary, repl, changelog population, author commit percentages and more. + +For more information go to Commands.md page for basic usage and examples. diff --git a/development/git-extras/git-extras.SlackBuild b/development/git-extras/git-extras.SlackBuild new file mode 100644 index 000000000000..f9760e30010f --- /dev/null +++ b/development/git-extras/git-extras.SlackBuild @@ -0,0 +1,69 @@ +#!/bin/sh + +# Slackware build script for git-extras + +# Copyright 2020-2021 Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=git-extras +VERSION=${VERSION:-6.2.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +ARCH=noarch + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +make install PREFIX=$PKG/usr SYSCONFDIR=$PKG/etc + +mv $PKG/usr/share/man $PKG/usr +rm -rf $PKG/usr/share + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + Readme.md CONTRIBUTING.md LICENSE AUTHORS Commands.md History.md Installation.md \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/git-extras/git-extras.info b/development/git-extras/git-extras.info new file mode 100644 index 000000000000..7bab5b391fcb --- /dev/null +++ b/development/git-extras/git-extras.info @@ -0,0 +1,10 @@ +PRGNAM="git-extras" +VERSION="6.2.0" +HOMEPAGE="https://github.com/tj/git-extras" +DOWNLOAD="https://github.com/tj/git-extras/archive/6.2.0/git-extras-6.2.0.tar.gz" +MD5SUM="aa96e6516b53e0ff63a06f910986f263" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Giuseppe Di Terlizzi" +EMAIL="giuseppe.diterlizzi@gmail.com" diff --git a/development/git-extras/slack-desc b/development/git-extras/slack-desc new file mode 100644 index 000000000000..eb1886f9dedf --- /dev/null +++ b/development/git-extras/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +git-extras: git-extras (repo summary, repl, changelog population and more ) +git-extras: +git-extras: GIT utilities -- repo summary, repl, changelog population, author +git-extras: commit percentages and more +git-extras: +git-extras: +git-extras: +git-extras: +git-extras: +git-extras: Home-Page : https://github.com/tj/git-extras +git-extras: |