[arch-commits] Commit in jenkins/repos/community-any (7 files)

2019-06-20 Thread Felix Yan via arch-commits
Date: Thursday, June 20, 2019 @ 18:19:35
  Author: felixonmars
Revision: 482522

fix pkgrelease

Added:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   23 +++
 PKGBUILD |   44 
 jenkins.conf |   13 +
 jenkins.install  |7 +++
 jenkins.service  |   24 
 jenkins.sysusers |2 ++
 jenkins.tmpfiles |1 +
 7 files changed, 114 insertions(+)

Added: LICENSE
===
--- LICENSE (rev 0)
+++ LICENSE 2019-06-20 18:19:35 UTC (rev 482522)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-20 18:19:35 UTC (rev 482522)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Alexander Rødseth 
+# Contributor: Marcel Huber 
+# Contributor: Illarion Kovalchuk 
+
+pkgname=jenkins
+pkgver=2.181
+pkgrel=1
+pkgdesc='Extendable continuous integration server (latest)'
+arch=('any')
+url='https://jenkins.io'
+license=('MIT')
+depends=('java-runtime=8' 'ttf-dejavu' 'libcups')
+provides=('jenkins-ci')
+conflicts=('jenkins-ci')
+replaces=('jenkins-ci')
+backup=('etc/conf.d/jenkins')
+install='jenkins.install'
+noextract=("jenkins-${pkgver}.war")
+source=("jenkins-${pkgver}.war::http://mirrors.jenkins-ci.org/war/${pkgver}/jenkins.war;
+# Rename to force re-download on new version
+'jenkins.conf'
+'jenkins.service'
+'jenkins.tmpfiles'
+'jenkins.sysusers'
+'LICENSE')
+sha512sums=('c3929456b3d80bf1925a458c2505166056e9f06207d7256c084a7c5614d6869785575394fbb8002a36722bde7bf827ec5067c7e71ba93e668dcb66c7dd8df14b'
+
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
+
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
+
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'
+
'896cbc64eadb2f3bb9fa7fc26dbfc527b1823d8bff3158be7f1936cc250f55eeafe89079e1ceb8f3d269041662573ccbbb36248140b4ba24144a564366f8847a'
+
'0df6479a600db395c12ad29ebda3120d00460338b9a6b15913e2245aa29212a3798c32e664ca70c8034146e2e0b573066deec9e3210198202f753994e1b83efa')
+
+package() {
+  install -Dm444 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm444 "jenkins-${pkgver}.war" 
"$pkgdir/usr/share/java/jenkins/jenkins.war"
+  install -Dm644 jenkins.service \
+"$pkgdir/usr/lib/systemd/system/jenkins.service"
+  install -Dm644 jenkins.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/jenkins.conf"
+  install -Dm644 jenkins.sysusers "$pkgdir/usr/lib/sysusers.d/jenkins.conf"
+  install -Dm644 jenkins.conf "$pkgdir/etc/conf.d/jenkins"
+}
+
+# vim:set ts=2 sw=2 et:

Added: jenkins.conf
===
--- jenkins.conf(rev 0)
+++ jenkins.conf2019-06-20 18:19:35 UTC (rev 482522)
@@ -0,0 +1,13 @@
+JAVA=/usr/bin/java
+JAVA_ARGS=-Xmx512m
+JAVA_OPTS=
+JENKINS_USER=jenkins
+JENKINS_HOME=/var/lib/jenkins
+JENKINS_WAR=/usr/share/java/jenkins/jenkins.war
+JENKINS_WEBROOT=--webroot=/var/cache/jenkins
+JENKINS_PORT=--httpPort=8090
+JENKINS_AJPPORT=--ajp13Port=-1

[arch-commits] Commit in jenkins/repos/community-any (7 files)

2019-06-20 Thread Felix Yan via arch-commits
Date: Thursday, June 20, 2019 @ 13:45:51
  Author: felixonmars
Revision: 482487

archrelease: copy trunk to community-any

Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   23 ---
 PKGBUILD |   44 
 jenkins.conf |   13 -
 jenkins.install  |7 ---
 jenkins.service  |   24 
 jenkins.sysusers |2 --
 jenkins.tmpfiles |1 -
 7 files changed, 114 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-06-20 13:45:32 UTC (rev 482486)
+++ LICENSE 2019-06-20 13:45:51 UTC (rev 482487)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-20 13:45:32 UTC (rev 482486)
+++ PKGBUILD2019-06-20 13:45:51 UTC (rev 482487)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.180
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime=8' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'
-noextract=("jenkins-${pkgver}.war")
-source=("jenkins-${pkgver}.war::http://mirrors.jenkins-ci.org/war/${pkgver}/jenkins.war;
-# Rename to force re-download on new version
-'jenkins.conf'
-'jenkins.service'
-'jenkins.tmpfiles'
-'jenkins.sysusers'
-'LICENSE')
-sha512sums=('ab626311695528e2970b3faecde7e5ec07dc12cce88b3861a5d74980349d4d409a476c38f0bdc3c0e9b443e8d2881eb77b7503eec2844e4abd8e5e149367b0d3'
-
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
-
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
-
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'
-
'896cbc64eadb2f3bb9fa7fc26dbfc527b1823d8bff3158be7f1936cc250f55eeafe89079e1ceb8f3d269041662573ccbbb36248140b4ba24144a564366f8847a'
-
'0df6479a600db395c12ad29ebda3120d00460338b9a6b15913e2245aa29212a3798c32e664ca70c8034146e2e0b573066deec9e3210198202f753994e1b83efa')
-
-package() {
-  install -Dm444 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm444 "jenkins-${pkgver}.war" 
"$pkgdir/usr/share/java/jenkins/jenkins.war"
-  install -Dm644 jenkins.service \
-"$pkgdir/usr/lib/systemd/system/jenkins.service"
-  install -Dm644 jenkins.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/jenkins.conf"
-  install -Dm644 jenkins.sysusers "$pkgdir/usr/lib/sysusers.d/jenkins.conf"
-  install -Dm644 jenkins.conf "$pkgdir/etc/conf.d/jenkins"
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: jenkins.conf
===
--- jenkins.conf2019-06-20 13:45:32 UTC (rev 482486)
+++ jenkins.conf2019-06-20 13:45:51 UTC (rev 482487)
@@ -1,13 +0,0 @@
-JAVA=/usr/bin/java
-JAVA_ARGS=-Xmx512m
-JAVA_OPTS=
-JENKINS_USER=jenkins
-JENKINS_HOME=/var/lib/jenkins
-JENKINS_WAR=/usr/share/java/jenkins/jenkins.war
-JENKINS_WEBROOT=--webroot=/var/cache/jenkins