summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-portage/bemerge')
-rw-r--r--app-portage/bemerge/Manifest7
-rwxr-xr-xapp-portage/bemerge/bemerge-0.4.1-r1.ebuild56
-rwxr-xr-xapp-portage/bemerge/bemerge-0.4.1.ebuild58
-rwxr-xr-xapp-portage/bemerge/bemerge-0.45.ebuild60
-rwxr-xr-xapp-portage/bemerge/bemerge-0.46.ebuild60
-rwxr-xr-xapp-portage/bemerge/bemerge-0.47.ebuild72
-rwxr-xr-xapp-portage/bemerge/bemerge-0.50.ebuild9
7 files changed, 5 insertions, 317 deletions
diff --git a/app-portage/bemerge/Manifest b/app-portage/bemerge/Manifest
index 677c994..6e8c554 100644
--- a/app-portage/bemerge/Manifest
+++ b/app-portage/bemerge/Manifest
@@ -1,7 +1,2 @@
-DIST bemerge 4473 RMD160 0d557c158cca2981379b1e840a66eb8750ba3e03 SHA1 0b99615591c90d90ebe225b881cdb6702a44c1d5 SHA256 5eb65dc1a6377185ff3b68a11b6dc519f58a29ac2030566e67be9048231221d4
-EBUILD bemerge-0.4.1-r1.ebuild 996 RMD160 7c95c3145a4cf839a2f74530814eb293af4eec5f SHA1 93d1c9cac8827bacc9ecdd0e2d526844e4a323c1 SHA256 65edc2cdb7eb37ad7b926a56239dc415c87e1c094cc7d8fa36ff1efb4feed1bf
-EBUILD bemerge-0.4.1.ebuild 1422 RMD160 b79ce7ce416f2bd57c0a0b40a3abd280755fa6b1 SHA1 dc2a413be9e4aa405d1fc09a3a18d72b21d5533f SHA256 f121652a8cec3283dde847db0b4273c9956f1d33b8361ce426a6f0ca5827bbb9
-EBUILD bemerge-0.45.ebuild 1166 RMD160 a642c292e181743d45fb2b38fec83ec312ab0853 SHA1 8d3df59bb0ebc338aa272290f8b93d1fab9dacf9 SHA256 f0b49b3a31c73152d0afd3e6e084cda9b01cc2bbbc6072c8f44a90ce361cee38
-EBUILD bemerge-0.46.ebuild 1164 RMD160 6bcd54b5eb4e8ac1d1464f8394f0b6e8bbe4b75f SHA1 268e411d58c348ceac279055c95da35b74bc110b SHA256 906879c769d3212eff98b4296960c22c50ac05487b7d4369a04ab556ba9097cb
-EBUILD bemerge-0.47.ebuild 1502 RMD160 5968d0180d6b5cde11c501b20bd92b719c021708 SHA1 37c062f949b00f6d383f1dda77385e188fd58445 SHA256 c89e73e38af553a750f8a6e2e43c963e79bc6fd39a9bb240eba72577520386b6
+EBUILD bemerge-0.50.ebuild 1521 RMD160 e7c26aa47f543fe7e3b188d323878a5f43cc8466 SHA1 c8604c20d07f0a76995e27858364fc4a83f6ce8e SHA256 1bd2c7f6f0cb4fb750839947715a07fbd3997cf3f9a0fffc5a3758db3216cd6e
MISC metadata.xml 324 RMD160 f1ec2dd85582b1acd4799c943df634768c022b36 SHA1 1903cedec7efa1c9c65945c8a9777832294e7773 SHA256 5cd0694310a87768365816083fad252af6f7069e2f1141b48edcfbb662c5b086
diff --git a/app-portage/bemerge/bemerge-0.4.1-r1.ebuild b/app-portage/bemerge/bemerge-0.4.1-r1.ebuild
deleted file mode 100755
index c669b70..0000000
--- a/app-portage/bemerge/bemerge-0.4.1-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-
-# Helpful information for me:
-# http://www.gentoo.org/proj/en/devrel/handbook/handbook.xml?part=2&chap=1
-# http://devmanual.gentoo.org/ebuild-writing/index.html
-# http://linuxreviews.org/man/ebuild/
-
-
-EAPI="3"
-
-inherit eutils git
-
-DESCRIPTION="a wrapper script for emerge to make it better"
-HOMEPAGE="https://github.com/write2david/bemerge"
-SRC_URI=""
-
-
-EGIT_REPO_URI="git://github.com/write2david/bemerge.git"
-EGIT_BRANCH="master"
-
-# The commit of version 0.41
-EGIT_COMMIT="48c2164dd4063fe6fa8"
-
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-RESTRICT="mirror test"
-
-
-RDEPEND="
- sys-process/time
- app-admin/localepurge
- sys-kernel/module-rebuild
- sys-process/lsof
- app-admin/checkrestart
- "
-
-
-src_unpack() {
- git_src_unpack
-}
-
-
-src_install() {
-
- # Dictate where the executable will be installed to
- exeinto /usr/bin
-
- # Now put the executable in said location
- doexe bemerge
-
-}
diff --git a/app-portage/bemerge/bemerge-0.4.1.ebuild b/app-portage/bemerge/bemerge-0.4.1.ebuild
deleted file mode 100755
index 824f651..0000000
--- a/app-portage/bemerge/bemerge-0.4.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-
-# Helpful information for me:
-# http://www.gentoo.org/proj/en/devrel/handbook/handbook.xml?part=2&chap=1
-# http://devmanual.gentoo.org/ebuild-writing/index.html
-# http://linuxreviews.org/man/ebuild/
-
-
-EAPI="3"
-
-inherit eutils
-
-DESCRIPTION="a wrapper script for emerge to make it better"
-HOMEPAGE="https://github.com/write2david/bemerge"
-SRC_URI="https://github.com/write2david/bemerge/raw/master/bemerge"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-RESTRICT="mirror test"
-
-
-RDEPEND="
- sys-process/time
- app-admin/localepurge
- sys-kernel/module-rebuild
- sys-process/lsof
- app-admin/checkrestart
- "
-
-
-# bemerge is not distributed as a compressed file, so no need to unpack it using
-# the default src_unpack function in /usr/lib/portage/bin/ebuild.sh
-# So, we'll override it with an empty function.
-# The override will also prevent portage from spitting out an error saying
-# that it can't unpack bemerge because it can't recognize the package format
-
-src_unpack() {
- true
-}
-
-
-src_install() {
-
- # Download bemerge, with will be auto-placed in the "work" directory,
- # avaiable for install with "doexe"
- wget https://github.com/write2david/bemerge/raw/master/bemerge
-
- # Dictate where the executable will be installed to
- exeinto /usr/bin
-
- # Now put the executable in said location
- doexe bemerge
-
-}
diff --git a/app-portage/bemerge/bemerge-0.45.ebuild b/app-portage/bemerge/bemerge-0.45.ebuild
deleted file mode 100755
index 1156f20..0000000
--- a/app-portage/bemerge/bemerge-0.45.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-
-# Helpful information for me:
-# http://www.gentoo.org/proj/en/devrel/handbook/handbook.xml?part=2&chap=1
-# http://devmanual.gentoo.org/ebuild-writing/index.html
-# http://linuxreviews.org/man/ebuild/
-
-# Contains the list of variables & functions available for using git in ebuilds:
-# http://gentoo-overlays.zugaina.org/kde/portage/eclass/git.eclass
-
-
-EAPI="3"
-
-inherit eutils git
-
-DESCRIPTION="a wrapper script for emerge to make it better"
-HOMEPAGE="https://github.com/write2david/bemerge"
-SRC_URI=""
-
-
-EGIT_REPO_URI="git://github.com/write2david/bemerge.git"
-EGIT_BRANCH="master"
-
-# The commit of version 0.45
-EGIT_COMMIT="4e71d23f10864"
-
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-RESTRICT="mirror test"
-
-
-RDEPEND="
- sys-process/time
- app-admin/localepurge
- sys-kernel/module-rebuild
- sys-process/lsof
- app-admin/checkrestart
- app-portage/portage-utils
- "
-
-
-src_unpack() {
- git_src_unpack
-}
-
-
-src_install() {
-
- # Dictate where the executable will be installed to
- exeinto /usr/bin
-
- # Now put the executable in said location
- doexe bemerge
-
-}
diff --git a/app-portage/bemerge/bemerge-0.46.ebuild b/app-portage/bemerge/bemerge-0.46.ebuild
deleted file mode 100755
index e296af5..0000000
--- a/app-portage/bemerge/bemerge-0.46.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-
-# Helpful information for me:
-# http://www.gentoo.org/proj/en/devrel/handbook/handbook.xml?part=2&chap=1
-# http://devmanual.gentoo.org/ebuild-writing/index.html
-# http://linuxreviews.org/man/ebuild/
-
-# Contains the list of variables & functions available for using git in ebuilds:
-# http://gentoo-overlays.zugaina.org/kde/portage/eclass/git.eclass
-
-
-EAPI="3"
-
-inherit eutils git
-
-DESCRIPTION="a wrapper script for emerge to make it better"
-HOMEPAGE="https://github.com/write2david/bemerge"
-SRC_URI=""
-
-
-EGIT_REPO_URI="git://github.com/write2david/bemerge.git"
-EGIT_BRANCH="master"
-
-# The commit of version 0.46
-EGIT_COMMIT="7e0c7e48a7e"
-
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-RESTRICT="mirror test"
-
-
-RDEPEND="
- sys-process/time
- app-admin/localepurge
- sys-kernel/module-rebuild
- sys-process/lsof
- app-admin/checkrestart
- app-portage/portage-utils
- "
-
-
-src_unpack() {
- git_src_unpack
-}
-
-
-src_install() {
-
- # Dictate where the executable will be installed to
- exeinto /usr/bin
-
- # Now put the executable in said location
- doexe bemerge
-
-}
diff --git a/app-portage/bemerge/bemerge-0.47.ebuild b/app-portage/bemerge/bemerge-0.47.ebuild
deleted file mode 100755
index 1888de9..0000000
--- a/app-portage/bemerge/bemerge-0.47.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-
-# Helpful information for me:
-# http://www.gentoo.org/proj/en/devrel/handbook/handbook.xml?part=2&chap=1
-# http://devmanual.gentoo.org/ebuild-writing/index.html
-# http://linuxreviews.org/man/ebuild/
-
-# Contains the list of variables & functions available for using git in ebuilds:
-# http://gentoo-overlays.zugaina.org/kde/portage/eclass/git.eclass
-
-
-EAPI="3"
-
-inherit eutils git
-
-DESCRIPTION="a wrapper script for emerge to make it better"
-HOMEPAGE="https://github.com/write2david/bemerge"
-SRC_URI=""
-
-
-EGIT_REPO_URI="git://github.com/write2david/bemerge.git"
-EGIT_BRANCH="master"
-
-# The commit of version 0.47
-EGIT_COMMIT="fdf8084010"
-
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-RESTRICT="mirror test"
-
-
-RDEPEND="
- sys-process/time
- app-admin/localepurge
- sys-kernel/module-rebuild
- sys-process/lsof
- app-admin/checkrestart
- app-portage/portage-utils
- "
-
-
-src_unpack() {
- git_src_unpack
-}
-
-
-src_install() {
-
- # Dictate where the executable will be installed to
- exeinto /usr/bin
-
- # Now put the executable in said location
- doexe bemerge
- doexe temerge
-
-
-pkg_postinst() {
- einfo
- einfo "You may now use 'bemerge' instead of 'emerge'"
- einfo "Or, to build a package using RAM instead of your hard drive for
- storage"
- einfo " you can run 'temerge' instead of 'bemerge'."
- einfo " See http://en.gentoo-wiki.com/wiki/Portage_TMPDIR_on_tmpfs for
- more info."
- }
-
-}
diff --git a/app-portage/bemerge/bemerge-0.50.ebuild b/app-portage/bemerge/bemerge-0.50.ebuild
index d28a3b0..9b801e6 100755
--- a/app-portage/bemerge/bemerge-0.50.ebuild
+++ b/app-portage/bemerge/bemerge-0.50.ebuild
@@ -8,14 +8,13 @@
# http://linuxreviews.org/man/ebuild/
# Contains the list of variables & functions available for using git in ebuilds:
-# http://gentoo-overlays.zugaina.org/kde/portage/eclass/git.eclass
-
+# http://devmanual.gentoo.org/eclass-reference/git-2.eclass/index.html
EAPI="3"
-inherit eutils git
+inherit eutils git-2
-DESCRIPTION="a wrapper script for emerge to make it easier"
+DESCRIPTION="a wrapper script for emerge to make it easier & more helpful"
HOMEPAGE="https://github.com/write2david/bemerge"
SRC_URI=""
@@ -45,7 +44,7 @@ RDEPEND="
src_unpack() {
- git_src_unpack
+ git-2_src_unpack
}