aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlice Ferrazzi <alicef@gentoo.org>2017-09-02 04:02:42 +0900
committerAlice Ferrazzi <alicef@gentoo.org>2017-09-02 04:02:42 +0900
commit6e540bea1c88ea4e36f2e9033654c806a5e182a9 (patch)
tree37210e972ab24fb95e1ca35264c1481f15eac3b8
parentmoved elivepatch-client and elivepatch-server to a different (diff)
downloadelivepatch-6e540bea1c88ea4e36f2e9033654c806a5e182a9.tar.gz
elivepatch-6e540bea1c88ea4e36f2e9033654c806a5e182a9.tar.bz2
elivepatch-6e540bea1c88ea4e36f2e9033654c806a5e182a9.zip
Added not finished ebuild
-rw-r--r--sys-devel/elivepatch-client/elivepatch-client-0.0.1.ebuild16
-rw-r--r--sys-devel/elivepatch-server/Manifest2
-rw-r--r--sys-devel/elivepatch-server/elivepatch-server-0.0.1.ebuild41
3 files changed, 59 insertions, 0 deletions
diff --git a/sys-devel/elivepatch-client/elivepatch-client-0.0.1.ebuild b/sys-devel/elivepatch-client/elivepatch-client-0.0.1.ebuild
new file mode 100644
index 0000000..7bf9073
--- /dev/null
+++ b/sys-devel/elivepatch-client/elivepatch-client-0.0.1.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="elivepatch server"
+HOMEPAGE="https://wiki.gentoo.org/wiki/User:Aliceinwire/elivepatch"
+SRC_URI="https://github.com/aliceinwire/elivepatch-server/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
diff --git a/sys-devel/elivepatch-server/Manifest b/sys-devel/elivepatch-server/Manifest
new file mode 100644
index 0000000..979ddb6
--- /dev/null
+++ b/sys-devel/elivepatch-server/Manifest
@@ -0,0 +1,2 @@
+DIST elivepatch-server-0.0.1.tar.gz 11305 SHA256 e80f67b29a577273f7ad84aecd691fc5d63b0b0511fe31d4067cd88e69f8fc94 SHA512 14183b216274fbc261743e7650c4a810f58701c51449a001d469ca8b44387aa2f277f21da2a96931eb379a5b3cd72844a1a54dced951ebc07867b94bf1e0159e WHIRLPOOL c89bb01190fd855afd0f3f2f1a7ecdeebbaa477c950898b68d11f954fdc46d808cd8a33f2577611913f8d22d25e7034ee7ba830884bd68ca8f9111993f76058f
+EBUILD elivepatch-server-0.0.1.ebuild 1020 SHA256 9fcc5c4b2180cfa88bbb1474cf2a9cb488bfec71ff2ca035e82072ec149c4ca7 SHA512 249f6eebf33a54e2e1cb55afab6b1ae78c715518b241f6ad22fa8812bd8439f7b8b269cf4fae2ebba3bdf3d8556f0ea63180268195d54bbc20b0b8d6b376ff78 WHIRLPOOL bc5384eac856f111f32db468dad91c1995d4446c2284af4fc693337654d6eebd55ca692c9421e504933c7796924578b145dc6d8effaa455a4af0e586f1bd88fb
diff --git a/sys-devel/elivepatch-server/elivepatch-server-0.0.1.ebuild b/sys-devel/elivepatch-server/elivepatch-server-0.0.1.ebuild
new file mode 100644
index 0000000..47350c4
--- /dev/null
+++ b/sys-devel/elivepatch-server/elivepatch-server-0.0.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_REQ_USE='bzip2(+)'
+
+inherit distutils-r1
+
+DESCRIPTION="elivepatch server"
+HOMEPAGE="https://wiki.gentoo.org/wiki/User:Aliceinwire/elivepatch"
+SRC_URI="https://github.com/aliceinwire/elivepatch-server/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+
+python_prepare_all() {
+ distutils-r1_python_prepare_all
+}
+
+python_install() {
+ # Install sbin scripts to bindir for python-exec linking
+ # they will be relocated in pkg_preinst()
+ distutils-r1_python_install \
+ --system-prefix="${EPREFIX}/usr" \
+ --bindir="$(python_get_scriptdir)" \
+ --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+ --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
+ --sbindir="$(python_get_scriptdir)" \
+ --sysconfdir="${EPREFIX}/etc" \
+ "${@}"
+}
+
+