From 0292feb1c88b5c5f20d2542d07254f1a0457d367 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Wed, 30 Jan 2019 21:10:36 -0800 Subject: [PATCH] Write README --- README.rst | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.rst b/README.rst index e69de29..b6a08c6 100644 --- a/README.rst +++ b/README.rst @@ -0,0 +1,23 @@ +Packaging Scripts +================= + +The Scripts +----------- +* addpkg - add a package to a repository and then automatically move its package tarfiles to that repository's respective cache directory +* delpkg - remove a package from a repository by manipulating the db file, and then remove that respective package's tarballs in that repository's directory +* fqo ("Fuzzy pacman -Qo") - using fzf and mlocate, select a file and then pass that file to $(pacman -Qo) + +addpkg +------ +* Either take all pacman package files in the current working directory or from the command line and add them to the given repository +* Automatically move said package files to the repository's cache directory + +delpkg +------ +* Take the names of packages and a repository, then delete those packages from said repository +* Automatically delete all tarfiles of those packages from the repository + +fqo +--- +* Given a query, pass to locate and then pass the results to fzf +* Select a file and then pass that file to pacman -Qo