From: "Anthony G. Basile" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] dev/blueness:master commit in: net-p2p/gnunet/, net-p2p/gnunet/files/
Date: Wed, 4 Apr 2012 15:14:53 +0000 (UTC) [thread overview]
Message-ID: <1333552486.6ce9c3528044a10f8e5930d229657e8f5510932a.blueness@gentoo> (raw)
commit: 6ce9c3528044a10f8e5930d229657e8f5510932a
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 4 15:14:46 2012 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Wed Apr 4 15:14:46 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/blueness.git;a=commit;h=6ce9c352
net-p2p/gnunet: officially giving up
---
net-p2p/gnunet/Manifest | 6 --
net-p2p/gnunet/files/gnunet-0.9.2.conf | 10 ---
net-p2p/gnunet/files/gnunet-0.9.2.confd | 10 ---
net-p2p/gnunet/files/gnunet-0.9.2.initd | 39 ------------
net-p2p/gnunet/gnunet-0.9.2.ebuild | 100 -------------------------------
net-p2p/gnunet/metadata.xml | 10 ---
6 files changed, 0 insertions(+), 175 deletions(-)
diff --git a/net-p2p/gnunet/Manifest b/net-p2p/gnunet/Manifest
deleted file mode 100644
index e8a2009..0000000
--- a/net-p2p/gnunet/Manifest
+++ /dev/null
@@ -1,6 +0,0 @@
-AUX gnunet-0.9.2.conf 156 RMD160 379a5c770b972132f66f9fabef75a2dee096599d SHA1 82ec8c694453dd6efca7a5e792b44b9d10d0d35c SHA256 ecede19aea0c4966939048db91dd639d8e01c0235e30520cb77cff18c4d5b1b4
-AUX gnunet-0.9.2.confd 184 RMD160 36cb26316819df6916f9a28107b145c2c1907638 SHA1 02c8c7484b22002b217ed1d769534fc2c6716e6b SHA256 9ac49d2a3d7ccd00f63afcd096a9facf7283d105524f6b1f359656b769db68e3
-AUX gnunet-0.9.2.initd 936 RMD160 36e9c6dd2b8589907d9f8cc0c4ec6663753d2e24 SHA1 06c0e8e4492f9d5df2e061499f33856f2eac72a5 SHA256 74c075059cf4b6fdd3bb88cb420c3ee5a88d4c76151fa0240ec064e89d0b88a4
-DIST gnunet-0.9.2.tar.gz 6239795 RMD160 6b1da8dcfc9edf51954b2d7b627e712a10ecde7a SHA1 f6a85e2af64e743a33a743be4445e67025db4d72 SHA256 24f5f1cb93782c22bd61ffdc9d99b7cfb2532dc4b6fb7d3468931e5a10eb47e9
-EBUILD gnunet-0.9.2.ebuild 2660 RMD160 e507370b6b90d3154645786d2da1902d419cf570 SHA1 d3ce7d85acc3842229e2e1baa1114ce009f48d0b SHA256 28fb23d041a47e90bf2af866a3991d6994a780ce733a1f7027361e6c0af15dfb
-MISC metadata.xml 460 RMD160 770e406b72735a3e388ba955fde7ee0b47559891 SHA1 285f663af54925a079f73c65a986efd698baf17c SHA256 add1f665332e553c7844d92d697c5958bfb134fcc6d69e1f151857af1ab34f6e
diff --git a/net-p2p/gnunet/files/gnunet-0.9.2.conf b/net-p2p/gnunet/files/gnunet-0.9.2.conf
deleted file mode 100644
index 76e0671..0000000
--- a/net-p2p/gnunet/files/gnunet-0.9.2.conf
+++ /dev/null
@@ -1,10 +0,0 @@
-[PATHS]
-SERVICEHOME = /var/lib/gnunet/
-DEFAULTCONFIG = /etc/gnunet.conf
-
-[arm]
-GLOBAL_POSTFIX = -l /var/log/gnunet/{}.log
-
-[transport]
-UNIX_MATCH_UID = NO
-
diff --git a/net-p2p/gnunet/files/gnunet-0.9.2.confd b/net-p2p/gnunet/files/gnunet-0.9.2.confd
deleted file mode 100644
index 8be9c9c..0000000
--- a/net-p2p/gnunet/files/gnunet-0.9.2.confd
+++ /dev/null
@@ -1,10 +0,0 @@
-# /etc/conf.d/gnunet: config file for /etc/init.d/gnunet
-
-# GNUnet user
-GNUNET_USER="gnunet"
-
-# GNUnet group
-GNUNET_GROUP="gnunet"
-
-# GNUnet config file
-GNUNET_CONF="/etc/gnunet.conf"
diff --git a/net-p2p/gnunet/files/gnunet-0.9.2.initd b/net-p2p/gnunet/files/gnunet-0.9.2.initd
deleted file mode 100644
index a3586b2..0000000
--- a/net-p2p/gnunet/files/gnunet-0.9.2.initd
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
-}
-
-start() {
- if [ ! -f "${GNUNET_CONF}" ]; then
- eerror "You must create the config file first."
- return 1
- fi
-
- ebegin "Starting GNUnet"
- start-stop-daemon --exec /usr/bin/gnunet-arm \
- --user=${GNUNET_USER} \
- --group=${GNUNET_GROUP} \
- -- -q -c ${GNUNET_CONF} -s
- eend $? "Failed to start GNUnet"
-}
-
-stop() {
- ebegin "Stopping GNUnet"
- start-stop-daemon --exec /usr/bin/gnunet-arm \
- --user=${GNUNET_USER} \
- --group=${GNUNET_GROUP} \
- -- -q -c ${GNUNET_CONF} -e
- eend $? "Failed to stop GNUnet"
-}
-
-restart() {
- ebegin "Restarting GNUnet"
- start-stop-daemon --exec /usr/bin/gnunet-arm \
- --user=${GNUNET_USER} \
- --group=${GNUNET_GROUP} \
- -- -q -c ${GNUNET_CONF} -r
- eend $? "Failed to restart GNUnet"
-}
diff --git a/net-p2p/gnunet/gnunet-0.9.2.ebuild b/net-p2p/gnunet/gnunet-0.9.2.ebuild
deleted file mode 100644
index 7b33ca6..0000000
--- a/net-p2p/gnunet/gnunet-0.9.2.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/gnunet-0.8.1.ebuild,v 1.2 2010/06/20 13:56:46 xarthisius Exp $
-
-EAPI="4"
-
-inherit eutils flag-o-matic
-
-MY_PV=${PV/_/}
-MY_P="${PN}-${MY_PV}"
-S="${WORKDIR}/${MY_P}"
-DESCRIPTION="GNUnet is a framework for secure peer-to-peer networking."
-HOMEPAGE="http://gnunet.org/"
-SRC_URI="ftp://ftp.gnu.org/gnu/gnunet/${MY_P}.tar.gz"
-RESTRICT="test"
-
-IUSE="experimental http mysql nls postgres +sqlite X"
-REQUIRED_USE="
- !mysql? ( !postgres? ( sqlite ) )
- !mysql? ( !sqlite? ( postgres ) )
- !postgres? ( !mysql? ( sqlite ) )
- !postgres? ( !sqlite? ( mysql ) )
- !sqlite? ( !postgres? ( mysql ) )
- !sqlite? ( !mysql? ( postgres ) )
-"
-KEYWORDS="~amd64 ~x86 ~arm"
-LICENSE="GPL-3"
-SLOT="0"
-
-DEPEND="
- >=net-misc/curl-7.21.0
- >=media-libs/libextractor-0.6.1
- >=dev-libs/libgcrypt-1.2
- >=dev-libs/libunistring-0.9.2
- sys-libs/ncurses
- sys-apps/sed
- sys-libs/zlib
- http? ( >=net-libs/libmicrohttpd-0.9.18 )
- mysql? ( >=virtual/mysql-5.1 )
- nls? ( sys-devel/gettext )
- postgres? ( >=dev-db/postgresql-server-8.3 )
- sqlite? ( >=dev-db/sqlite-3.0 )
- X? (
- x11-libs/libXt
- x11-libs/libXext
- x11-libs/libX11
- x11-libs/libXrandr
- )
-"
-
-pkg_setup() {
- enewgroup gnunetdns
- enewgroup gnunet
- enewuser gnunet -1 -1 /dev/null gnunet
-}
-
-src_prepare() {
- sed -i -e 's|$(bindir)/gnunet|$(DESTDIR)$(bindir)/gnunet|g' \
- "${S}"/src/nat/Makefile.in || die "sed failed"
- sed -i -e 's|$(bindir)/gnunet|$(DESTDIR)$(bindir)/gnunet|g' \
- "${S}"/src/transport/Makefile.in || die "sed failed"
- sed -i -e 's|$(bindir)/gnunet|$(DESTDIR)$(bindir)/gnunet|g' \
- "${S}"/src/vpn/Makefile.in || die "sed failed"
- sed -i -e 's|$(bindir)/gnunet|$(DESTDIR)$(bindir)/gnunet|g' \
- "${S}"/src/dns/Makefile.in || die "sed failed"
- sed -i -e 's|$(bindir)/gnunet|$(DESTDIR)$(bindir)/gnunet|g' \
- "${S}"/src/exit/Makefile.in || die "sed failed"
-}
-
-src_configure() {
- #append-ldflags $(no-as-needed)
-
- econf \
- $(use_enable experimental) \
- $(use_with http microhttpd) \
- $(use_with mysql) \
- $(use_enable nls) \
- $(use_with postgres) \
- $(use_with sqlite) \
- $(use_with X x)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc AUTHORS INSTALL NEWS README
- insinto /etc
- newins "${FILESDIR}"/${P}.conf gnunet.conf
- newconfd "${FILESDIR}"/${P}.confd gnunet
- newinitd "${FILESDIR}"/${P}.initd gnunet
- keepdir /var/{lib,log}/gnunet
- fowners gnunet:gnunet /var/lib/gnunet /var/log/gnunet
-}
-
-pkg_postinst() {
- einfo
- einfo "To configure"
- einfo " 1) Add user(s) to the gnunet group"
- einfo " 2) Edit the server config file '/etc/gnunet.conf'"
- einfo
-}
diff --git a/net-p2p/gnunet/metadata.xml b/net-p2p/gnunet/metadata.xml
deleted file mode 100644
index 1ae8337..0000000
--- a/net-p2p/gnunet/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>net-p2p</herd>
- <longdescription>GNUnet is a framework for secure peer-to-peer networking that does not use any centralized or otherwise trusted services</longdescription>
- <use>
- <flag name="http">enable embedded http server support</flag>
- <flag name="experimental">enable experimental options</flag>
- </use>
-</pkgmetadata>
next reply other threads:[~2012-04-04 15:15 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-04 15:14 Anthony G. Basile [this message]
-- strict thread matches above, loose matches on Subject: below --
2012-03-07 2:12 [gentoo-commits] dev/blueness:master commit in: net-p2p/gnunet/, net-p2p/gnunet/files/ Anthony G. Basile
2012-03-04 11:51 Anthony G. Basile
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=1333552486.6ce9c3528044a10f8e5930d229657e8f5510932a.blueness@gentoo \
--to=blueness@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