Skip to content

Commit

Permalink
Simplify.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctsrc committed Jan 9, 2020
1 parent 13cfc34 commit 6a872a8
Show file tree
Hide file tree
Showing 69 changed files with 130 additions and 647 deletions.
2 changes: 2 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/repotools.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

86 changes: 2 additions & 84 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

71 changes: 53 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,53 @@
[workspace]

members = [
"commands/dp2",
"commands/aa2",
"commands/st2",
"commands/di2",
"commands/cm2",
"commands/pu2",
"commands/le2",
"commands/tag2",
"commands/tags2",
"commands/rmtag2",
]

exclude = [
"repotools",
]
[package]
name = "repotools"
description = "Short names, big time savings. Repotools is a collection of commands with short but meaningful names, for the git operations you perform most often."
license = "ISC"
readme = "README.md"
repository = "https://github.com/ctsrc/repotools"
version = "0.8.0"
authors = ["Erik Nordstrøm <erik@nordstroem.no>"]
categories = ["command-line-utilities", "development-tools", "science"]
keywords = ["git"]
edition = "2018"

[[bin]]
name = "dp"
required-features = ["dp"]

[[bin]]
name = "aa"
required-features = ["aa"]

[[bin]]
name = "st"
required-features = ["st"]

[[bin]]
name = "di"
required-features = ["di"]

[[bin]]
name = "cm"
required-features = ["cm"]

[[bin]]
name = "pu"
required-features = ["pu"]

[[bin]]
name = "le"
required-features = ["le"]

[features]
default = ["dp","aa","st","di","cm","pu","le"]
dp = []
aa = []
st = []
di = []
cm = []
pu = []
le = []

[dependencies]
clap = { version = "2.33.0", default-features = false, features = ["yaml"] }
exec = "0.3.1"
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ Download links and installation instructions are provided below.

#### macOS Catalina 10.15.2 x86_64

Download: [repotools-v0.7.5-macOS-Catalina-x86_64.tbz](https://github.com/ctsrc/repotools/releases/download/repotools-v0.7.5/repotools-v0.7.5-macOS-Catalina-x86_64.tbz)
Download: [repotools-v0.8.0-macOS-Catalina-x86_64.tbz](https://github.com/ctsrc/repotools/releases/download/repotools-v0.8.0/repotools-v0.8.0-macOS-Catalina-x86_64.tbz)

Installation:

```sh
cd ~
curl -LJO https://github.com/ctsrc/repotools/releases/download/repotools-v0.7.5/repotools-v0.7.5-macOS-Catalina-x86_64.tbz
tar xvf repotools-v0.7.5-macOS-Catalina-x86_64.tbz
curl -LJO https://github.com/ctsrc/repotools/releases/download/repotools-v0.8.0/repotools-v0.8.0-macOS-Catalina-x86_64.tbz
tar xvf repotools-v0.8.0-macOS-Catalina-x86_64.tbz
```

The binaries are now available in `~/bin/`. Add that directory
Expand All @@ -120,7 +120,7 @@ if you didn't have it there already, log out and log in again.

#### Ubuntu 18.04 Bionic GNU/Linux x86_64

Download: [repotools-v0.7.5-ubuntu-bionic-x86_64.txz](https://github.com/ctsrc/repotools/releases/download/repotools-v0.7.5/repotools-v0.7.5-ubuntu-bionic-x86_64.txz)
Download: [repotools-v0.8.0-ubuntu-bionic-x86_64.txz](https://github.com/ctsrc/repotools/releases/download/repotools-v0.8.0/repotools-v0.8.0-ubuntu-bionic-x86_64.txz)

Being based on Ubuntu 18.04 Bionic, KDE neon User Edition 5.17 and the former
share the same binary release file. You should be able to use the same binaries
Expand All @@ -130,8 +130,8 @@ Installation:

```sh
cd ~
wget https://github.com/ctsrc/repotools/releases/download/repotools-v0.7.5/repotools-v0.7.5-ubuntu-bionic-x86_64.txz
tar xvf repotools-v0.7.5-ubuntu-bionic-x86_64.txz
wget https://github.com/ctsrc/repotools/releases/download/repotools-v0.8.0/repotools-v0.8.0-ubuntu-bionic-x86_64.txz
tar xvf repotools-v0.8.0-ubuntu-bionic-x86_64.txz
```

The binaries are now available in `~/bin/`. Add that directory
Expand All @@ -140,7 +140,7 @@ if you didn't have it there already, log out and log in again.

#### KDE neon User Edition 5.17 GNU/Linux x86_64

Download: [repotools-v0.7.5-ubuntu-bionic-x86_64.txz](https://github.com/ctsrc/repotools/releases/download/repotools-v0.7.5/repotools-v0.7.5-ubuntu-bionic-x86_64.txz)
Download: [repotools-v0.8.0-ubuntu-bionic-x86_64.txz](https://github.com/ctsrc/repotools/releases/download/repotools-v0.8.0/repotools-v0.8.0-ubuntu-bionic-x86_64.txz)

Being based on Ubuntu 18.04 Bionic, KDE neon User Edition 5.17 and the former
share the same binary release file. You should be able to use the same binaries
Expand All @@ -150,8 +150,8 @@ Installation:

```sh
cd ~
wget https://github.com/ctsrc/repotools/releases/download/repotools-v0.7.5/repotools-v0.7.5-ubuntu-bionic-x86_64.txz
tar xvf repotools-v0.7.5-ubuntu-bionic-x86_64.txz
wget https://github.com/ctsrc/repotools/releases/download/repotools-v0.8.0/repotools-v0.8.0-ubuntu-bionic-x86_64.txz
tar xvf repotools-v0.8.0-ubuntu-bionic-x86_64.txz
```

The binaries are now available in `~/bin/`. Add that directory
Expand All @@ -160,14 +160,14 @@ if you didn't have it there already, log out and log in again.

#### FreeBSD 12.1 x86_64

Download: [repotools-v0.7.5-FreeBSD-12.1-x86_64.txz](https://github.com/ctsrc/repotools/releases/download/repotools-v0.7.5/repotools-v0.7.5-FreeBSD-12.1-x86_64.txz)
Download: [repotools-v0.8.0-FreeBSD-12.1-x86_64.txz](https://github.com/ctsrc/repotools/releases/download/repotools-v0.8.0/repotools-v0.8.0-FreeBSD-12.1-x86_64.txz)

Installation:

```sh
cd ~
fetch https://github.com/ctsrc/repotools/releases/download/repotools-v0.7.5/repotools-v0.7.5-FreeBSD-12.1-x86_64.txz
tar xvf repotools-v0.7.5-FreeBSD-12.1-x86_64.txz
fetch https://github.com/ctsrc/repotools/releases/download/repotools-v0.8.0/repotools-v0.8.0-FreeBSD-12.1-x86_64.txz
tar xvf repotools-v0.8.0-FreeBSD-12.1-x86_64.txz
```

The binaries are now available in `~/bin/`. Add that directory
Expand Down
20 changes: 0 additions & 20 deletions commands/aa2/Cargo.toml

This file was deleted.

1 change: 0 additions & 1 deletion commands/aa2/aa2.toml

This file was deleted.

1 change: 0 additions & 1 deletion commands/aa2/build.rs

This file was deleted.

20 changes: 0 additions & 20 deletions commands/cm2/Cargo.toml

This file was deleted.

1 change: 0 additions & 1 deletion commands/cm2/build.rs

This file was deleted.

1 change: 0 additions & 1 deletion commands/cm2/cm2.toml

This file was deleted.

Loading

0 comments on commit 6a872a8

Please sign in to comment.