summaryrefslogtreecommitdiff
path: root/app-misc
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/godep/godep-9999.ebuild44
-rw-r--r--app-misc/livecd-tools/Manifest1
-rw-r--r--app-misc/livecd-tools/files/livecd-tools-systemd.patch12
-rw-r--r--app-misc/livecd-tools/livecd-tools-2.1.ebuild42
-rw-r--r--app-misc/passwordless-upgrade/files/10-RigoDaemon.rules7
-rw-r--r--app-misc/passwordless-upgrade/passwordless-upgrade-1.ebuild21
-rw-r--r--app-misc/rogentos-reposi/files/entropy_frozen5
-rw-r--r--app-misc/rogentos-reposi/files/entropy_rogentoslinux12
-rw-r--r--app-misc/rogentos-reposi/files/entropy_sabayon-weekly13
-rw-r--r--app-misc/rogentos-reposi/files/entropy_server62
-rwxr-xr-xapp-misc/rogentos-reposi/files/reupdate11
-rw-r--r--app-misc/rogentos-reposi/rogentos-reposi-1.0.ebuild35
12 files changed, 0 insertions, 265 deletions
diff --git a/app-misc/godep/godep-9999.ebuild b/app-misc/godep/godep-9999.ebuild
deleted file mode 100644
index 38ba91da..00000000
--- a/app-misc/godep/godep-9999.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-
-inherit git-r3
-
-RESTRICT="strip"
-
-DESCRIPTION="native bindings for the FUSE kernel module"
-HOMEPAGE="https://github.com/tools/godep"
-EGIT_REPO_URI="https://github.com/tools/${PN}.git"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-DEPEND="dev-lang/go"
-RDEPEND=""
-
-GO_PN="github.com/tools/${PN}"
-EGIT_CHECKOUT_DIR="${S}/src/${GO_PN}"
-
-export GOPATH="${S}"
-
-src_prepare() {
- go get ${GO_PN}
-}
-
-src_compile() {
- go build -v -x -work ${GO_PN} || die
-}
-
-src_install() {
-# go install -v -x -work ${GO_PN} || die
-
-dobin ${S}/bin/godep
-#insinto /usr/lib/go/
-#doins -r "${S}/pkg"
-#insinto /usr/lib/go/src/pkg
-#doins -r "${S}/src/."
-}
diff --git a/app-misc/livecd-tools/Manifest b/app-misc/livecd-tools/Manifest
deleted file mode 100644
index d3d19016..00000000
--- a/app-misc/livecd-tools/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST livecd-tools-2.1.tar.gz 11418 SHA256 5490c76d02ba571c2549114c8ea55cd36b78b3c065372c28e3bcd1ee2ad493e9 SHA512 feb8946c70baeb5b2e4adcc26f76f5fcf146353dcfcfd411cf68242512ab587b0c31c916c6f2a47ab35dcd4bb87ca879e5a91b95d8237c4ac3bbd9104f31e0c2 WHIRLPOOL 2199ef6cf7667cbdfa943c18c2e41ec5ba2f276a685eb2162fdb42552e80daf7bd53258932d8f80a38ee1995edfe3934884413358e4eef3059acc04047cf9121
diff --git a/app-misc/livecd-tools/files/livecd-tools-systemd.patch b/app-misc/livecd-tools/files/livecd-tools-systemd.patch
deleted file mode 100644
index 4f98ba82..00000000
--- a/app-misc/livecd-tools/files/livecd-tools-systemd.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nur a/livecd-functions.sh b/livecd-functions.sh
---- a/livecd-functions.sh 2015-12-11 17:49:28.000000000 +0000
-+++ b/livecd-functions.sh 2015-12-21 12:59:58.548466484 +0000
-@@ -8,7 +8,7 @@
- # LIVECD_CONSOLE_PARITY -- console parity specified
- # LIVECD_CONSOLE_DATABITS -- console databits specified
-
--[[ ${RC_GOT_FUNCTIONS} != "yes" ]] && [[ -e /etc/init.d/functions.sh ]] && source /etc/init.d/functions.sh
-+[[ ${RC_GOT_FUNCTIONS} != "yes" ]] && [[ -e /lib/gentoo/functions.sh ]] && source /lib/gentoo/functions.sh
-
- livecd_parse_opt() {
- case "$1" in
diff --git a/app-misc/livecd-tools/livecd-tools-2.1.ebuild b/app-misc/livecd-tools/livecd-tools-2.1.ebuild
deleted file mode 100644
index ddea6131..00000000
--- a/app-misc/livecd-tools/livecd-tools-2.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-SRC_URI="https://dev.gentoo.org/~williamh/dist/${P}.tar.gz"
-KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86"
-
-DESCRIPTION="Gentoo LiveCD tools for autoconfiguration of hardware"
-HOMEPAGE="http://wolf31o2.org/projects/livecd-tools"
-
-SLOT="0"
-LICENSE="GPL-2"
-IUSE="systemd"
-
-RDEPEND="dev-util/dialog
- net-dialup/mingetty
- >=sys-apps/baselayout-2
- sys-apps/gentoo-functions
- sys-apps/systemd
- sys-apps/pciutils
- sys-apps/gawk
- sys-apps/sed"
-
-pkg_setup() {
- ewarn "This package is designed for use on the LiveCD only and will do"
- ewarn "unspeakably horrible and unexpected things on a normal system."
- ewarn "YOU HAVE BEEN WARNED!!!"
-}
-
-src_prepare() {
- epatch ""${FILESDIR}"/"${PN}"-systemd.patch"
-}
-
-src_install() {
- dosbin net-setup
- into /
- dosbin livecd-functions.sh
-}
diff --git a/app-misc/passwordless-upgrade/files/10-RigoDaemon.rules b/app-misc/passwordless-upgrade/files/10-RigoDaemon.rules
deleted file mode 100644
index 83210590..00000000
--- a/app-misc/passwordless-upgrade/files/10-RigoDaemon.rules
+++ /dev/null
@@ -1,7 +0,0 @@
-/* Allow users in the entropy group to launch system upgrades */
-polkit.addRule(function(action, subject) {
- if (action.id == "org.sabayon.RigoDaemon.upgrade" &&
- subject.isInGroup("entropy")) {
- return polkit.Result.YES;
- }
-});
diff --git a/app-misc/passwordless-upgrade/passwordless-upgrade-1.ebuild b/app-misc/passwordless-upgrade/passwordless-upgrade-1.ebuild
deleted file mode 100644
index 29393bb3..00000000
--- a/app-misc/passwordless-upgrade/passwordless-upgrade-1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-DESCRIPTION="Allow users in the entropy group to run system upgrades without password"
-HOMEPAGE="http://www.rogentos.ro"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-S="${WORKDIR}"
-
-src_install () {
- dodir /usr/share/polkit-1/rules.d
- insinto /usr/share/polkit-1/rules.d
- doins "${FILESDIR}/10-RigoDaemon.rules"
-}
diff --git a/app-misc/rogentos-reposi/files/entropy_frozen b/app-misc/rogentos-reposi/files/entropy_frozen
deleted file mode 100644
index d9154ee2..00000000
--- a/app-misc/rogentos-reposi/files/entropy_frozen
+++ /dev/null
@@ -1,5 +0,0 @@
-[frozen]
-desc = Sabayon Frozen 13.11 Community Repository
-repo = http://www.ols18.com/danysk/frozen/13.11#bz2
-enabled = true
-pkg = http://www.ols18.com/danysk/frozen/13.11
diff --git a/app-misc/rogentos-reposi/files/entropy_rogentoslinux b/app-misc/rogentos-reposi/files/entropy_rogentoslinux
deleted file mode 100644
index 4b6172d8..00000000
--- a/app-misc/rogentos-reposi/files/entropy_rogentoslinux
+++ /dev/null
@@ -1,12 +0,0 @@
-# Repository configuration file automatically generated
-# by Entropy on your behalf.
-
-[rogentoslinux]
-desc = Rogentos Linux Official Repository
-repo = http://pkg.rogentos.ro/~rogentos/entropy#bz2
-enabled = true
-pkg = http://bpr.bluepink.ro/~rogentos/entropy/
-pkg = http://pkg2.rogentos.ro/~noxis/entropy/
-pkg = http://pkg.rogentos.ro/~rogentos/entropy/
-pkg = http://pkg3.rogentos.ro/~noxis/entropy/
-
diff --git a/app-misc/rogentos-reposi/files/entropy_sabayon-weekly b/app-misc/rogentos-reposi/files/entropy_sabayon-weekly
deleted file mode 100644
index 827b8261..00000000
--- a/app-misc/rogentos-reposi/files/entropy_sabayon-weekly
+++ /dev/null
@@ -1,13 +0,0 @@
-# Repository configuration file automatically generated
-# by Entropy on your behalf.
-
-[sabayon-weekly]
-desc = Sabayon Linux Official Repository
-repo = http://pkg.sabayon.org#bz2
-enabled = true
-pkg = http://best.sabayon.org/entropy
-pkg = http://dl.sabayon.org/entropy
-pkg = http://redir.sabayon.org/entropy
-pkg = http://na.mirror.garr.it/mirrors/sabayonlinux/entropy
-pkg = http://pkg.sabayon.org
-
diff --git a/app-misc/rogentos-reposi/files/entropy_server b/app-misc/rogentos-reposi/files/entropy_server
deleted file mode 100644
index c2e77713..00000000
--- a/app-misc/rogentos-reposi/files/entropy_server
+++ /dev/null
@@ -1,62 +0,0 @@
-# Entropy Server now supports repositories defined inside
-# /etc/entropy/repositories.conf.d/ files, written using the
-# syntax detailed below. This improves the ability to enable, disable,
-# add and remove repositories programmatically. Furthermore, it
-# makes possible to extend the supported parameters without breaking
-# backward compatibility.
-#
-# In order to differentiate Entropy Client repository definitions between
-# Entropy Server ones, each repository section must start with "[server=".
-#
-# This is an example of the syntax (with a complete listing
-# of the supported arguments):
-#
-# [server=sabayon-limbo]
-# desc = Sabayon Linux Official Testing Repository
-# repo = ssh://username@full.host:~username/sabayon-limbo
-# enabled = <true/false>
-#
-# [server=sabayon-limbo]
-# desc = This statement will be ignored.
-# repo-only = ssh://username@repo.host:~username/sabayon-limbo
-# pkg-only = ssh://username@pkg.host:~username/sabayon-limbo
-#
-# [server=sabayon-base]
-# desc = This is the base repository.
-# repo-only = ssh://username@repo.host:~username/sabayon-base
-# pkg-only = ssh://username@pkg.host:~username/sabayon-base
-# base = <true/false>
-#
-# As you can see, multiple statements for the same repository
-# are allowed. However, only the first desc = statement will be
-# considered, while there can be as many {pkg,repo}* = as you want.
-#
-# The repository order is important, but this is guaranteed by the
-# fact that configuration files are parsed in lexical order.
-#
-# Statements description:
-# - "desc": stands for description, the repository name description.
-# - "repo": the push & pull URI, for both packages and repository database.
-# - "repo-only": same as repo, but only for the repository database
-# push & pull.
-# - "pkg-only": same as repo, but only for the packages push & pull.
-# The supported protocols are those supported by entropy.fetchers.
-# - "enabled": if set, its value can be either "true" or "false". The default
-# value is "true". It indicates if a repository is configured
-# but currently disabled or enabled. Please take into account
-# that config files in /etc/entropy/repositories.conf.d/ starting
-# with "_" are considered to contain disabled repositories. This
-# is just provided for convienence.
-# - "base": if set, its value can be either "true" or "false". The default
-# value is "false". If no repository has the flag set, the first
-# listed repository will be the base one.
-# - "exclude-qa": if set, its value can be either "true" or "false". The default
-# value is "false". If "true", the repository is excluded from
-# QA checks.
-
-# [server=<example repository>]
-# desc = Entropy Server Example Repository
-# repo = ssh://user@localhost:~user/repository-name
-# repo-only = ssh://user@localhost:~user/repository-only-name
-# pkg-only = ssh://user@localhost:~user/package-only-name
-# enabled = true
diff --git a/app-misc/rogentos-reposi/files/reupdate b/app-misc/rogentos-reposi/files/reupdate
deleted file mode 100755
index d965dcde..00000000
--- a/app-misc/rogentos-reposi/files/reupdate
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-# Copyright 2014-2015 RogentOS Linux Group
-# LICENSE: GPL v2.0
-
-rm /etc/entropy/repositories.conf.d/README
-for i in $(ls /etc/entropy/repositories.conf.d/ | cut -d '.' -f 1 | sort -u | cut -d "_" -f 2); do
- equo repo mirrorsort $i
-done
-
-equo update
diff --git a/app-misc/rogentos-reposi/rogentos-reposi-1.0.ebuild b/app-misc/rogentos-reposi/rogentos-reposi-1.0.ebuild
deleted file mode 100644
index 19d9f218..00000000
--- a/app-misc/rogentos-reposi/rogentos-reposi-1.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2012 Rogentos Linux
-# Distributed under the terms of the GNU General Public License v2
-# Maintainer BlackNoxis <stefan.cristian at rogentos.ro>
-# $Header: $
-
-EAPI=5
-
-DESCRIPTION="Offical Rogentos Stability Watcher"
-HOMEPAGE="http://www.rogentos.ro"
-SRC_URI=""
-
-LICENSE="GPL-v2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-RDEPEND="app-admin/equo
- !app-misc/sabayon-version"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}"
-
-src_install() {
- ewarn "This is available for only Entropy package manager" || die
- insinto /etc/entropy/repositories.conf.d/
- doins "${FILESDIR}"/entropy* || die
- insinto /opt/reupdate/
- doins "${FILESDIR}"/reupdate
- fperms u+x /opt/reupdate/reupdate
- dosym /opt/reupdate/reupdate /usr/bin/reupdate
-}
-
-pkg_postinst() {
- einfo "Please report bugs or glitches to"
- einfo "stefan.cristian [aaron] rogentos.ro"
-}