diff options
author | Tyler Veness | 2016-08-12 03:00:26 -0700 |
---|---|---|
committer | Tyler Veness | 2016-08-12 03:00:26 -0700 |
commit | 7aefd54ff3eb6b037be72b26cc95bac42f9f5814 (patch) | |
tree | 55193cbff8d3c1781f2914d7134e4883cdb0ddd0 | |
parent | 05ad6ec37eb598b2966a98424d0496c0f78faf74 (diff) | |
download | aur-7aefd54ff3eb6b037be72b26cc95bac42f9f5814.tar.gz |
Removed changelog and updated version in install file
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 2 | ||||
-rw-r--r-- | changelog | 54 | ||||
-rw-r--r-- | gerrit.install | 7 |
4 files changed, 5 insertions, 60 deletions
@@ -1,7 +1,7 @@ pkgbase = gerrit pkgdesc = A web-based code review tool built on top of the Git version control system pkgver = 2.12.3 - pkgrel = 1 + pkgrel = 2 url = https://www.gerritcodereview.com/ install = gerrit.install arch = any @@ -5,7 +5,7 @@ pkgname=gerrit pkgver=2.12.3 -pkgrel=1 +pkgrel=2 pkgdesc="A web-based code review tool built on top of the Git version control system" arch=(any) url="https://www.gerritcodereview.com/" diff --git a/changelog b/changelog deleted file mode 100644 index 734ac639389..00000000000 --- a/changelog +++ /dev/null @@ -1,54 +0,0 @@ -2014-01-06 Thanh Ha <thanh.ha@alumni.carleton.ca> - - - Update to Gerrit 2.8 - -2013-06-24 Thanh Ha <thanh.ha@alumni.carleton.ca> - - - Update to Gerrit 2.7 - -2013-06-24 Thanh Ha <thanh.ha@alumni.carleton.ca> - - - Update to Gerrit 2.6.1 - -2013-06-22 Thanh Ha <thanh.ha@alumni.carleton.ca> - - - Update to Gerrit 2.6.0 - -2013-05-20 Thanh Ha <thanh.ha@alumni.carleton.ca> - - - Update to Gerrit 2.5.4 - -2013-05-09 Marcel Huber <marcelhuberfoo@gmail.com> - - - correcting install location of systemd file, removing rc service file - -2013-05-06 Thanh Ha <thanh.ha@alumni.carleton.ca> - - - Update to Gerrit 2.5.2 - - -2012-08-23 Marcel Huber <marcelhuberfoo@gmail.com> - - - gerrit-2.4.2-1 - - not using /srv/gerrit-review anymore - - home directory of gerrit should suffice for the installation - - -2012-08-23 Marcel Huber <marcelhuberfoo@gmail.com> - - - added simple rc.d script which delegates to gerrit.sh - - corrected systemd start script - - corrected typo in default configuration - - -2012-08-23 Marcel Huber <marcelhuberfoo@gmail.com> - - - adjusted java command line to start gerrit - - adjusted default configuration file - - adjusted install file - - -2012-08-17 Marcel Huber <marcelhuberfoo@gmail.com> - - - initial copy of jenkins-ci files with some adaption - - needs still a lot of adaption diff --git a/gerrit.install b/gerrit.install index 468b2f3deb8..f5fdfc51660 100644 --- a/gerrit.install +++ b/gerrit.install @@ -1,5 +1,4 @@ #!/bin/sh -# vim:set ts=2 sw=2 et: ## CHANGE the following two variables according to your preference ## /bin/true: start/enable systemd service during installation @@ -80,7 +79,7 @@ post_install() { _set_dir_permissions _enable_systemd_service _start_systemd_service - echo " To initialize gerrit, see https://gerrit-documentation.storage.googleapis.com/Documentation/2.12.1/index.html" + echo " To initialize gerrit, see https://gerrit-documentation.storage.googleapis.com/Documentation/2.12.3/index.html" echo " To setup gerrit do:" echo " sudo su - gerrit" echo " java -jar /usr/share/java/gerrit/gerrit.war init -d /var/lib/gerrit" @@ -100,7 +99,7 @@ post_upgrade() { _enable_systemd_service _reload_systemd_service _start_systemd_service - echo " To update gerrit, see https://gerrit-documentation.storage.googleapis.com/Documentation/2.12.1/index.html" + echo " To update gerrit, see https://gerrit-documentation.storage.googleapis.com/Documentation/2.12.3/index.html" echo " To update gerrit do:" echo " sudo su - gerrit" echo " java -jar /usr/share/java/gerrit/gerrit.war init -d /var/lib/gerrit" @@ -124,4 +123,4 @@ post_remove() { done return 0; } - +# vim:set ts=2 sw=2 et: |