mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
development/bfg: Added (git repo cleaner).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
225b081ee5
commit
876a3447fe
5 changed files with 89 additions and 0 deletions
4
development/bfg/README
Normal file
4
development/bfg/README
Normal file
|
@ -0,0 +1,4 @@
|
|||
The BFG is a simpler, faster alternative to git-filter-branch
|
||||
for cleansing bad data out of your Git repository history.
|
||||
|
||||
Java (jdk) is a runtime dependency.
|
3
development/bfg/bfg
Normal file
3
development/bfg/bfg
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
java -jar /opt/bfg/bfg.jar "$@"
|
53
development/bfg/bfg.SlackBuild
Normal file
53
development/bfg/bfg.SlackBuild
Normal file
|
@ -0,0 +1,53 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for bfg
|
||||
|
||||
# Ryan P.C. McQuen | Everett, WA | ryan.q@linux.com
|
||||
|
||||
# This program 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, with the following exception:
|
||||
# the text of the GPL license may be omitted.
|
||||
|
||||
# This program 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. Compiling,
|
||||
# interpreting, executing or merely reading the text of the program
|
||||
# may result in lapses of consciousness and/or very being, up to and
|
||||
# including the end of all existence and the Universe as we know it.
|
||||
# See the GNU General Public License for more details.
|
||||
|
||||
# You may have received a copy of the GNU General Public License
|
||||
# along with this program (most likely, a file named COPYING). If
|
||||
# not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
PRGNAM=bfg
|
||||
VERSION=${VERSION:-1.12.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
|
||||
mkdir -p $PKG/opt/$PRGNAM/
|
||||
mkdir -p $PKG/usr/bin/
|
||||
cp -a $CWD/$PRGNAM-$VERSION.jar $PKG/opt/$PRGNAM/$PRGNAM.jar
|
||||
install -m755 $CWD/$PRGNAM $PKG/usr/bin/
|
||||
|
||||
mkdir -p $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}
|
10
development/bfg/bfg.info
Normal file
10
development/bfg/bfg.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="bfg"
|
||||
VERSION="1.12.0"
|
||||
HOMEPAGE="https://rtyley.github.io/bfg-repo-cleaner/"
|
||||
DOWNLOAD="http://repo1.maven.org/maven2/com/madgag/bfg/1.12.0/bfg-1.12.0.jar"
|
||||
MD5SUM="3ac2faa40f585e43b821f40a5bf034b1"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="jdk"
|
||||
MAINTAINER="Ryan P.C. McQuen"
|
||||
EMAIL="ryan.q@linux.com"
|
19
development/bfg/slack-desc
Normal file
19
development/bfg/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
bfg: bfg (git repo cleaner)
|
||||
bfg:
|
||||
bfg:
|
||||
bfg: The BFG is a simpler, faster alternative to git-filter-branch
|
||||
bfg: for cleansing bad data out of your Git repository history.
|
||||
bfg:
|
||||
bfg:
|
||||
bfg:
|
||||
bfg:
|
||||
bfg: https://rtyley.github.io/bfg-repo-cleaner/
|
||||
bfg:
|
Loading…
Reference in a new issue