public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Guilherme Amadio" <amadio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/root/files/
Date: Mon, 19 Nov 2018 16:25:28 +0000 (UTC)	[thread overview]
Message-ID: <1542644714.f56c1087d27bbebf7ce65121d49a97dbf2e3dc73.amadio@gentoo> (raw)

commit:     f56c1087d27bbebf7ce65121d49a97dbf2e3dc73
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Sep 21 17:57:41 2018 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Mon Nov 19 16:25:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f56c1087

sci-physics/root: remove unused patch/files

Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>
Closes: https://bugs.gentoo.org/667872

 sci-physics/root/files/proofd.confd            | 12 -----------
 sci-physics/root/files/proofd.initd            | 25 -----------------------
 sci-physics/root/files/root-6.14.00-http.patch | 28 --------------------------
 sci-physics/root/files/rootd.confd             |  8 --------
 sci-physics/root/files/rootd.initd             | 27 -------------------------
 5 files changed, 100 deletions(-)

diff --git a/sci-physics/root/files/proofd.confd b/sci-physics/root/files/proofd.confd
deleted file mode 100644
index 81720a7eb33..00000000000
--- a/sci-physics/root/files/proofd.confd
+++ /dev/null
@@ -1,12 +0,0 @@
-# conf.d file for proof daemon
-#
-# Please refer to the proofd(1) man(1) page for more information on 
-# command line parameters. 
-#
-PROOFD_OPTS=
-
-# Specify your base of your PROOF directory here.  If left blank, it
-# will use the system default (e.g., /usr/share/root/proof). 
-# Note, however, that ROOT recommends that this directory is shared (via
-# NFS or similar) among all the nodes of the cluster.
-PROOF_DIR=

diff --git a/sci-physics/root/files/proofd.initd b/sci-physics/root/files/proofd.initd
deleted file mode 100644
index ee865133cb2..00000000000
--- a/sci-physics/root/files/proofd.initd
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
-    need root-file-server
-    use logger
-}
-
-start() {
-    ebegin "Starting parallel ROOT facility server"
-    start-stop-daemon --start --quiet \
-	--pidfile /var/run/proofd.pid \
-	--exec /usr/bin/proofd -- ${PROOFD_OPTS} ${PROOF_DIR}
-    pidof /usr/bin/proofd > /var/run/proofd.pid
-    eend $?
-}
-
-stop() {
-    ebegin "Stopping parallel ROOT facility server"
-    start-stop-daemon --stop --quiet \
-	--pidfile /var/run/proofd.pid \
-	--exec /usr/bin/proofd
-    eend $?
-}

diff --git a/sci-physics/root/files/root-6.14.00-http.patch b/sci-physics/root/files/root-6.14.00-http.patch
deleted file mode 100644
index 04ec4bea567..00000000000
--- a/sci-physics/root/files/root-6.14.00-http.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From bed1568548d7a47785d8fe24ec7a9ce5799040ff Mon Sep 17 00:00:00 2001
-From: Guilherme Amadio <amadio@cern.ch>
-Date: Wed, 27 Jun 2018 15:08:07 +0200
-Subject: [PATCH] Do not exclude etc/http directory from installation
-
-This was an unintended side-effect of a previous commit:
-9b4d0d8dccbd48d21b0f7c79b6eaf94428f691b1.
----
- CMakeLists.txt | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 4c760d0fdb..a3a0f59925 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -426,8 +426,7 @@ if(NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_INSTALL_PREFIX)
-                          PATTERN "rootd.xinetd" EXCLUDE
-                          PATTERN "proofd.xinetd" EXCLUDE
-                          PATTERN "root.mimes" EXCLUDE
--                         PATTERN "cmake" EXCLUDE
--                         PATTERN "http" EXCLUDE )
-+                         PATTERN "cmake" EXCLUDE )
-   install(DIRECTORY fonts/  DESTINATION ${CMAKE_INSTALL_FONTDIR})
-   install(DIRECTORY icons/  DESTINATION ${CMAKE_INSTALL_ICONDIR})
-   install(DIRECTORY macros/ DESTINATION ${CMAKE_INSTALL_MACRODIR})
--- 
-2.18.0
-

diff --git a/sci-physics/root/files/rootd.confd b/sci-physics/root/files/rootd.confd
deleted file mode 100644
index 7516b8c9b6d..00000000000
--- a/sci-physics/root/files/rootd.confd
+++ /dev/null
@@ -1,8 +0,0 @@
-# conf.d file for root daemon
-
-# User to run as (default is `rootd')
-ROOTD_USER="rootd"
-
-# Please refer to the rootd(1) man(1) page for more information on 
-# command line parameters. 
-ROOTD_OPTS=""

diff --git a/sci-physics/root/files/rootd.initd b/sci-physics/root/files/rootd.initd
deleted file mode 100644
index f808259c367..00000000000
--- a/sci-physics/root/files/rootd.initd
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
-    need net
-    use logger
-    provide root-file-server
-}
-
-start() {
-    ebegin "Starting ROOT file server"
-    pid=$(start-stop-daemon --start --quiet --user ${ROOTD_USER} \
-	--pidfile /var/run/rootd.pid \
-	--exec /usr/bin/rootd -- ${ROOTD_OPTS})
-    retval=$?
-    echo ${ROOTD_PID} > /var/run/rootd.pid
-    eend ${retval}
-}
-
-stop() {
-    ebegin "Stopping ROOT file server"
-    start-stop-daemon --stop --quiet \
-	--pidfile /var/run/rootd.pid \
-	--exec /usr/bin/rootd
-    eend $?
-}


             reply	other threads:[~2018-11-19 16:25 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-19 16:25 Guilherme Amadio [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-01-20 10:16 [gentoo-commits] repo/gentoo:master commit in: sci-physics/root/files/ David Seifert
2020-06-20 17:29 Guilherme Amadio
2019-03-04  3:14 Aaron Bauman
2018-04-05 15:36 Aaron Bauman
2017-12-18 13:13 Guilherme Amadio

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1542644714.f56c1087d27bbebf7ce65121d49a97dbf2e3dc73.amadio@gentoo \
    --to=amadio@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox