prepare for packaging
This commit is contained in:
parent
e39d18cdb4
commit
05a98853db
|
@ -1,3 +1,3 @@
|
|||
## Cockpit Navigator 0.4.6-3
|
||||
## Cockpit Navigator 0.5.0-1
|
||||
|
||||
* Add relase for el7
|
||||
* Implement custom modal style popups to replace browser dialogs.
|
10
README.md
10
README.md
|
@ -23,17 +23,17 @@ With no command line use needed, you can:
|
|||
# Installation
|
||||
## From Github Release
|
||||
### Ubuntu
|
||||
1. `$ wget https://github.com/45Drives/cockpit-navigator/releases/download/v0.4/cockpit-navigator_0.4.6-3focal_all.deb`
|
||||
1. `# apt install ./cockpit-navigator_0.4.6-3focal_all.deb`
|
||||
1. `$ wget https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.0/cockpit-navigator_0.5.0-1focal_all.deb`
|
||||
1. `# apt install ./cockpit-navigator_0.5.0-1focal_all.deb`
|
||||
### EL7
|
||||
1. `# yum install https://github.com/45Drives/cockpit-navigator/releases/download/v0.4/cockpit-navigator-0.4.6-3.el7.noarch.rpm`
|
||||
1. `# yum install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.0/cockpit-navigator-0.5.0-1.el7.noarch.rpm`
|
||||
### EL8
|
||||
1. `# dnf install https://github.com/45Drives/cockpit-navigator/releases/download/v0.4/cockpit-navigator-0.4.6-3.el8.noarch.rpm`
|
||||
1. `# dnf install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.0/cockpit-navigator-0.5.0-1.el8.noarch.rpm`
|
||||
## From Source
|
||||
1. Ensure dependencies are installed: `cockpit`, `python3`, `rsync`, `zip`.
|
||||
1. `$ git clone https://github.com/45Drives/cockpit-navigator.git`
|
||||
1. `$ cd cockpit-navigator`
|
||||
1. `$ git checkout <version>` (v0.4.6 is latest)
|
||||
1. `$ git checkout <version>` (v0.5.0 is latest)
|
||||
1. `# make install`
|
||||
## From 45Drives Repositories
|
||||
### Ubuntu
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
"name": "cockpit-navigator",
|
||||
"title": "Cockpit Navigator",
|
||||
"prerelease": false,
|
||||
"version": "0.4.6",
|
||||
"buildVersion": "3",
|
||||
"version": "0.5.0",
|
||||
"buildVersion": "1",
|
||||
"author": "Josh Boudreau <jboudreau@45drives.com>",
|
||||
"url": "https://github.com/45Drives/cockpit-navigator",
|
||||
"category": "utils",
|
||||
|
@ -54,8 +54,8 @@
|
|||
],
|
||||
"changelog": {
|
||||
"urgency": "medium",
|
||||
"version": "0.4.6",
|
||||
"buildVersion": "3",
|
||||
"version": "0.5.0",
|
||||
"buildVersion": "1",
|
||||
"ignore": [],
|
||||
"date": null,
|
||||
"packager": "Josh Boudreau <jboudreau@45drives.com>",
|
||||
|
|
|
@ -33,6 +33,8 @@ rm -rf %{buildroot}
|
|||
/usr/share/cockpit/navigator/*
|
||||
|
||||
%changelog
|
||||
* Thu Jul 15 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.0-1
|
||||
- Implement custom modal style popups to replace browser dialogs.
|
||||
* Wed Jul 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-3
|
||||
- Add relase for el7
|
||||
* Wed Jun 30 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-2
|
||||
|
|
|
@ -32,6 +32,8 @@ rm -rf %{buildroot}
|
|||
/usr/share/cockpit/navigator/*
|
||||
|
||||
%changelog
|
||||
* Thu Jul 15 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.0-1
|
||||
- Implement custom modal style popups to replace browser dialogs.
|
||||
* Wed Jul 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-3
|
||||
- Add relase for el7
|
||||
* Wed Jun 30 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-2
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
cockpit-navigator (0.5.0-1focal) focal; urgency=medium
|
||||
|
||||
* Implement custom modal style popups to replace browser dialogs.
|
||||
|
||||
-- Josh Boudreau <jboudreau@45drives.com> Thu, 15 Jul 2021 10:42:41 -0300
|
||||
|
||||
cockpit-navigator (0.4.6-3focal) focal; urgency=medium
|
||||
|
||||
* Add relase for el7
|
||||
|
|
Loading…
Reference in New Issue