diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-14 03:56:46 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-14 03:56:46 +0100 |
commit | 0250fbe1b35e04f1b59089b5bd4235b652b9df18 (patch) | |
tree | 4cc8135892d5263182c9a0f917dbf85f8e091403 | |
parent | 2fc7eb4b1e493a79ca68230e49b8804ec18e95bc (diff) | |
download | sbotools-0250fbe1b35e04f1b59089b5bd4235b652b9df18.tar.xz |
Add README.md
-rw-r--r-- | README.md | 40 | ||||
-rwxr-xr-x | tools/package_up.sh | 5 |
2 files changed, 44 insertions, 1 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..3e8c8c9 --- /dev/null +++ b/README.md @@ -0,0 +1,40 @@ +# sbotools [![Build Status](https://travis-ci.org/pink-mist/sbotools.svg?branch=master)](https://travis-ci.org/pink-mist/sbotools) + +**sbotools** provides a ports-like interface to slackbuilds.org. + +[sbotools](https://pink-mist.github.io/sbotools/) + +## Changes +* 2.0 - Unreleased + * Use system perl when running and installing sbotools + * Try to use sbosrcarch if a download fails + (https://github.com/pink-mist/sbotools/issues/7) + * LOCAL_OVERRIDES setting added allowing locally maintained packages + to override what might or might not be on SBo + (https://github.com/pink-mist/sbotools/issues/8) + * SLACKWARE_VERSION setting added to allow the repository for a different + version of slackware to be used. Useful if you're on -current and + /etc/slackware-version has been updated, but neither slackbuilds.org or + sbotools have been updated yet. + * sbocheck: changed output slightly to allow easier copy/pasting + (https://github.com/pink-mist/sbotools/issues/10) + * sboupgrade: added --all option, small manpage fixes, fixed bug in dependency + handling (https://github.com/pink-mist/sbotools/issues/9 + https://github.com/pink-mist/sbotools/issues/12) + * sbocheck, sboinstall, sboupgrade: Messages that a local override is being + used added (https://github.com/pink-mist/sbotools/issues/13 + https://github.com/pink-mist/sbotools/issues/15) + * sboinstall, sboupgrade: Give a useful error message if a dependency cannot + be found (https://github.com/pink-mist/sbotools/issues/16) + * sbofind manpage: add missing -q option. + +* 1.9 - 2015-11-27 + * Make it compatible with perls newer than 5.18 + * Lots of code cleanup + * Rewrite build-queue code (https://github.com/pink-mist/sbotools/issues/2) + * Fix issue when TMP is set (https://github.com/pink-mist/sbotools/issues/4) + * Fix various bugs related to cleanup code + * Change location of website + * Fix downloading of multiple sources in newer slackbuilds + (https://github.com/pink-mist/sbotools/issues/5) + diff --git a/tools/package_up.sh b/tools/package_up.sh index 953b602..824d0ba 100755 --- a/tools/package_up.sh +++ b/tools/package_up.sh @@ -39,7 +39,10 @@ if [[ -d $PKG_DIR/t ]]; then fi if [[ -d $PKG_DIR/tools ]]; then rm -rf $PKG_DIR/tools -fi +fi +if [[ -f $PKG_DIR/README.md ]]; then + rm $PKG_DIR/README.md +fi if [[ -d $PKG_DIR/slackbuild/$PACKAGE ]]; then if [[ -f $PKG_DIR/slackbuild/$PACKAGE/README ]]; then cp $PKG_DIR/slackbuild/$PACKAGE/README $PKG_DIR/ |