summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-02-15 14:28:50 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-02-15 14:28:50 +0100
commit131f90dac8d4e418474f309dbc42a52ffe6ff24c (patch)
tree897eb5ed671dd99632f046807a060940ef7c1158
parent8ba135267ecc530adf48b652883579666133548e (diff)
pcr/redmine: removed, already in community
-rw-r--r--pcr/redmine/PKGBUILD78
1 files changed, 0 insertions, 78 deletions
diff --git a/pcr/redmine/PKGBUILD b/pcr/redmine/PKGBUILD
deleted file mode 100644
index f96e774df..000000000
--- a/pcr/redmine/PKGBUILD
+++ /dev/null
@@ -1,78 +0,0 @@
-# Maintainer (Arch): mawcomw <mawcomw@gmail.com>
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-
-pkgname=redmine
-pkgver=3.3.0
-pkgrel=1
-pkgdesc="A flexible project management web application. Written using the Ruby on Rails, it is cross-platform and cross-database."
-arch=('any')
-url="http://www.redmine.org"
-license=('GPL2')
-#makedepends=('glibc' 'dialog')
-#checkdepends=()
-#depends=('ruby')
-optdepends=('ruby: a dynamic, interpreted, open source programming language'
- 'rvm: a command line tool to easily manage multiple Ruby environments'
- 'rbenv: another command line tool to easily manage multiple Ruby environments'
- 'apache: a supported application server'
- 'nginx: a supported application server'
- 'tomcat6: a supported application server'
- 'tomcat7: a supported application server'
- 'mariadb: MariaDB database support'
- 'mysql: MySQL database support'
- 'postgresql: PostgreSQL database support'
- 'git: Git repository browsing'
- 'subversion: Subversion repository browsing'
- 'darcs: Darcs repository browsing'
- 'bzr: Bazaar repository browsing'
- 'mercurial: Mercurial repository browsing'
- 'cvs: CVS repository browsing'
- 'imagemagick: Image export support for Gantt')
-provides=('redmine')
-#conflicts=()
-#replaces=()
-backup=('usr/share/webapps/redmine/config/configuration.yml'
- 'usr/share/webapps/redmine/config/additional_environment.rb'
- 'usr/share/webapps/redmine/config/database.yml')
-#options=()
-#install=redmine.install
-#changelog
-source=("http://www.redmine.org/releases/$pkgname-$pkgver.tar.gz")
-#noextract
-md5sums=('0c0abb2d4efde455c3505d8caf01cb2d')
-#sha1sums=()
-#sha256sums=()
-#sha384sums=()
-#sha512sums=()
-
-build() {
- return 0
-}
-
-package() {
- _redmine_installation_path="/usr/share/webapps/redmine"
- cd "$srcdir/redmine-$pkgver"
-
- # install in /usr/share/webapps
- _instdir="$pkgdir/${_redmine_installation_path}"
- mkdir -p ${_instdir}
- cp -ra . ${_instdir}
-
- # create required directories
- mkdir -p "${_instdir}/public/plugin_assets"
- #mkdir -p "${_instdir}/tmp/pdf"
- #mkdir -p "${_instdir}/files"
- #mkdir -p "${_instdir}/log"
-
- # set the group that will run the http server to have write permission (for apache it should be http)
- chmod -R g+w "${_instdir}/tmp"
- chmod g+w "${_instdir}/files"
- chmod g+w "${_instdir}/log"
-
- # set the http server user:group that will run the application
- #chgrp -R http ${_instdir}
-
- # Create systemd service
- #mkdir -p "$pkgdir/usr/lib/systemd/system/"
- #install -m 644 "$srcdir/redmine.service" "$pkgdir/usr/lib/systemd/system/"
-}