-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from Kedap/develop
v1.4.0
- Loading branch information
Showing
25 changed files
with
338 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Rust | ||
|
||
on: | ||
push: | ||
branches: [ main, develop ] | ||
pull_request: | ||
branches: [ main, develop ] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build | ||
run: cargo build --verbose | ||
- name: Run tests | ||
run: cargo test --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
target/ | ||
testdir/test-tar.tar.gz | ||
testdir/test-tar.d/ | ||
testdir/test.adi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "apmpkg" | ||
version = "1.3.0" | ||
authors = ["kedap <[email protected]>"] | ||
version = "1.4.0" | ||
authors = ["kedap <[email protected]>"] | ||
edition = "2018" | ||
description = "Un administrador de paquetes universal para linux como modelo: PKGBUILD" | ||
readme = "README.md" | ||
|
@@ -24,4 +24,5 @@ tar = "0.4" | |
flate2 = "1.0" | ||
sha2 = "0.9.3" | ||
nix = "0.20.0" | ||
psutil = "3.2.0" | ||
psutil = "3.2.0" | ||
exitcode = "1.1.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.3. | ||
.TH APMPKG "1" "June 2021" "apmpkg 1.3" "User Commands" | ||
.TH APMPKG "1" "June 2021" "apmpkg 1.4" "User Commands" | ||
.SH NAME | ||
apmpkg \- manual page for apmpkg 1.3 | ||
apmpkg \- manual page for apmpkg 1.4 | ||
.SH DESCRIPTION | ||
ApmPKG v1.3 | ||
Kedap. <[email protected]> | ||
A Package Manager as a model: PKGBUILD | ||
ApmPKG v1.4.0 | ||
Kedap. <[email protected]> | ||
A Package Manager as model: PKGBUILD | ||
.SS "USAGE:" | ||
.IP | ||
apmpkg [OPTIONS] [SUBCOMMAND] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.3. | ||
.TH APMPKG "1" "June 2021" "apmpkg 1.3" "User Commands" | ||
.TH APMPKG "1" "June 2021" "apmpkg 1.4" "User Commands" | ||
.SH NAME | ||
apmpkg \- Pagina manual de apmpkg 1.3 | ||
apmpkg \- Pagina manual para ApmPKG 1.4 | ||
.SH DESCRIPTION | ||
ApmPKG v1.3 | ||
Kedap. <[email protected]> | ||
ApmPKG v1.4.0 | ||
Kedap. <[email protected]> | ||
Un administrador de paquetes universal para linux como modelo PKGBUILD | ||
.SS "USAGE:" | ||
.IP | ||
|
@@ -26,10 +26,10 @@ construir | |
Crea un binario apartir de un archivo adi o abc | ||
.TP | ||
crear | ||
Crea un prototipo para archivo .adi o .abc | ||
Imprime el menu de ayuda para cada subcomando | ||
.TP | ||
help | ||
Imprime el menu de ayuda para cada subcomando | ||
Prints this message or the help of the given subcommand(s) | ||
.TP | ||
instalar | ||
Instala/actualiza un paquete | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: ApmPKG | ||
version: "v1.3.0" | ||
author: Kedap. <[email protected]> | ||
version: "v1.4.0" | ||
author: Kedap. <[email protected]> | ||
about: Un administrador de paquetes universal para linux como modelo PKGBUILD | ||
args: | ||
- instalard: | ||
|
Oops, something went wrong.