public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/menumaker/, x11-misc/menumaker/files/
@ 2019-07-31 17:00 Joonas Niilola
  0 siblings, 0 replies; 3+ messages in thread
From: Joonas Niilola @ 2019-07-31 17:00 UTC (permalink / raw
  To: gentoo-commits

commit:     2b6d96d3b2bdc002e02139a75abec0e6f3197be7
Author:     Chris Mayo <aklhfex <AT> gmail <DOT> com>
AuthorDate: Sun Jul 28 16:40:32 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Jul 31 17:00:06 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b6d96d3

x11-misc/menumaker: bump to 0.99.11 and EAPI 7

Package-Manager: Portage-2.3.66, Repoman-2.3.16
Signed-off-by: Chris Mayo <aklhfex <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12564
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 x11-misc/menumaker/Manifest                        |   1 +
 .../files/menumaker-0.99.11-AM_PATH_PYTHON.patch   | 100 +++++++++++++++++++++
 x11-misc/menumaker/menumaker-0.99.11.ebuild        |  58 ++++++++++++
 3 files changed, 159 insertions(+)

diff --git a/x11-misc/menumaker/Manifest b/x11-misc/menumaker/Manifest
index f485759ac26..5bd926640a2 100644
--- a/x11-misc/menumaker/Manifest
+++ b/x11-misc/menumaker/Manifest
@@ -1 +1,2 @@
 DIST menumaker-0.99.10.tar.gz 202580 BLAKE2B 2fb53359a6e4b14fe8966c3fbb6d0f381a3ad9e52463d37edbef47a409b0ecf4f17bd7221395987d4cd49f363007aa97f0d6182595a571f1baab4e7977c06bff SHA512 e7a731ac848089cbdb845fdb0e344b48e70d3bb7220870127d3616549d31fa62b61a48e3efff52d7767b597a4407a8548e776c16976072d0aa7f5c96740cd207
+DIST menumaker-0.99.11.tar.gz 205196 BLAKE2B 5f1fa9cbf4fd739499db86f9173fbbea2c96900597d13185f2a2f2b5746a0a2c05d12b115782488cb5b1df1f48638bb831dbee4bb14c414fc11328f43d241c46 SHA512 b45b8f2de4e63bad673bf4463ac074b068d4889cf37644962d51e1514d07bef827679d060d1503e59ea4bfc460fdc643d850921b3a02babd1ea57249511ffa5a

diff --git a/x11-misc/menumaker/files/menumaker-0.99.11-AM_PATH_PYTHON.patch b/x11-misc/menumaker/files/menumaker-0.99.11-AM_PATH_PYTHON.patch
new file mode 100644
index 00000000000..73cf9b6ff80
--- /dev/null
+++ b/x11-misc/menumaker/files/menumaker-0.99.11-AM_PATH_PYTHON.patch
@@ -0,0 +1,100 @@
+diff --git a/Makefile.am b/Makefile.am
+index b00b7bc..1c6f12b 100644
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -1,15 +1,53 @@
+-ACLOCAL_AMFLAGS = -I m4
+-
+ SUBDIRS = doc
+ 
+ dist_bin_SCRIPTS = mmaker
+ 
+-nobase_dist_pkgdata_DATA = *.py MenuMaker/*.py Prophet/*.py Prophet/Desktop/*.py Prophet/Legacy/*.py Prophet/Debian/*.py Prophet/Debian/menu/*
++python_PYTHON = \
++	Config.py \
++	Keywords.py \
++	Paths.py
++
++pythonMenuMakerdir = $(pythondir)/MenuMaker
++pythonMenuMaker_PYTHON = \
++	MenuMaker/BlackBox.py \
++	MenuMaker/CLI.py \
++	MenuMaker/Deskmenu.py \
++	MenuMaker/FluxBox.py \
++	MenuMaker/IceWM.py \
++	MenuMaker/__init__.py \
++	MenuMaker/OpenBox3.py \
++	MenuMaker/PekWM.py \
++	MenuMaker/WindowMaker.py \
++	MenuMaker/xBox.py \
++	MenuMaker/Xfce4.py
++
++pythonProphetdir = $(pythondir)/Prophet
++pythonProphet_PYTHON = \
++	Prophet/Categories.py \
++	Prophet/__init__.py
++
++pythonProphetDesktopdir = $(pythondir)/Prophet/Desktop
++pythonProphetDesktop_PYTHON = \
++	Prophet/Desktop/__init__.py
++
++pythonProphetLegacydir = $(pythondir)/Prophet/Legacy
++pythonProphetLegacy_PYTHON = \
++	Prophet/Legacy/Development.py \
++	Prophet/Legacy/Editor.py \
++	Prophet/Legacy/Emulator.py \
++	Prophet/Legacy/Graphics.py \
++	Prophet/Legacy/__init__.py \
++	Prophet/Legacy/Multimedia.py \
++	Prophet/Legacy/Network.py \
++	Prophet/Legacy/Shell.py
+ 
+-install-exec-local :
+-	echo "#!/usr/bin/env $(PYTHON_BIN)" > $(DESTDIR)/$(bindir)/mmaker
+-	echo "import sys; sys.path = ['$(pkgdatadir)'] + sys.path" >> $(DESTDIR)/$(bindir)/mmaker
+-	echo "import MenuMaker.CLI" >> $(DESTDIR)/$(bindir)/mmaker
++pythonProphetDebiandir = $(pythondir)/Prophet/Debian
++pythonProphetDebian_PYTHON = \
++	Prophet/Debian/__init__.py
+ 
+-install-data-local :
+-	$(PYTHON) -c 'import compileall; compileall.compile_dir(dir="$(DESTDIR)/$(pkgdatadir)", ddir="$(pkgdatadir)")'
++pythonProphetDebianMenudir = $(pythondir)/Prophet/Debian/menu
++dist_pythonProphetDebianMenu_DATA = \
++	Prophet/Debian/menu/debian-2.2r5 \
++	Prophet/Debian/menu/debian-8.1 \
++	Prophet/Debian/menu/ubuntu-5.04 \
++	Prophet/Debian/menu/ubuntu-5.10
+diff --git a/configure.ac b/configure.ac
+index 248ffcb..1bde23b 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -2,22 +2,12 @@ AC_INIT(MenuMaker, 0.99.11)
+ 
+ AM_INIT_AUTOMAKE
+ 
+-#AZ_PYTHON_DEFAULT
++AM_PATH_PYTHON
+ 
+-#AZ_PYTHON_WITH
+-
+-#if test -z "$PYTHON"; then
+-#    AZ_PYTHON_PATH
+-#fi
+-
+-#AZ_PYTHON_VERSION_ENSURE([2.7])
+-
+-#AZ_PYTHON_RUN
+-
+-AX_PYTHON
+-
+-AC_CONFIG_FILES([Makefile])
+-AC_CONFIG_FILES([doc/Makefile])
+-AC_CONFIG_FILES([Config.py])
++AC_CONFIG_FILES([
++	Makefile
++	doc/Makefile
++	Config.py
++])
+ 
+ AC_OUTPUT

diff --git a/x11-misc/menumaker/menumaker-0.99.11.ebuild b/x11-misc/menumaker/menumaker-0.99.11.ebuild
new file mode 100644
index 00000000000..ab1ac978b11
--- /dev/null
+++ b/x11-misc/menumaker/menumaker-0.99.11.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+
+inherit autotools python-r1
+
+DESCRIPTION="Utility that scans through the system and generates a menu of installed programs"
+HOMEPAGE="http://menumaker.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+
+IUSE="doc"
+
+RDEPEND="${PYTHON_DEPS}"
+DEPEND="${RDEPEND}
+	doc? ( sys-apps/texinfo )"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+PATCHES=(
+	"${FILESDIR}"/${P}-AM_PATH_PYTHON.patch
+)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	configure() {
+		ECONF_SOURCE="${S}" econf PYTHON="${EPYTHON}"
+	}
+	python_foreach_impl run_in_build_dir configure
+}
+
+src_compile() {
+	compile() {
+		default
+		use doc && emake html
+	}
+	python_foreach_impl run_in_build_dir compile
+}
+
+src_install() {
+	compile() {
+		default
+		use doc && emake DESTDIR="${D}" install-html
+	}
+	python_foreach_impl run_in_build_dir compile
+	python_replicate_script "${ED}"/usr/bin/mmaker
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/menumaker/, x11-misc/menumaker/files/
@ 2020-06-28 10:41 Joonas Niilola
  0 siblings, 0 replies; 3+ messages in thread
From: Joonas Niilola @ 2020-06-28 10:41 UTC (permalink / raw
  To: gentoo-commits

commit:     62e9539442d47e810e9af04f4b45076ec7df5b28
Author:     Chris Mayo <aklhfex <AT> gmail <DOT> com>
AuthorDate: Sun Jun 14 18:16:45 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jun 28 10:40:59 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62e95394

x11-misc/menumaker: remove old 0.99.10

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Chris Mayo <aklhfex <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16207
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 x11-misc/menumaker/Manifest                        |   1 -
 .../files/menumaker-0.99.10-AM_PATH_PYTHON.patch   | 100 ---------------------
 x11-misc/menumaker/menumaker-0.99.10.ebuild        |  58 ------------
 3 files changed, 159 deletions(-)

diff --git a/x11-misc/menumaker/Manifest b/x11-misc/menumaker/Manifest
index 075a2e4b8c1..199c44262ce 100644
--- a/x11-misc/menumaker/Manifest
+++ b/x11-misc/menumaker/Manifest
@@ -1,3 +1,2 @@
-DIST menumaker-0.99.10.tar.gz 202580 BLAKE2B 2fb53359a6e4b14fe8966c3fbb6d0f381a3ad9e52463d37edbef47a409b0ecf4f17bd7221395987d4cd49f363007aa97f0d6182595a571f1baab4e7977c06bff SHA512 e7a731ac848089cbdb845fdb0e344b48e70d3bb7220870127d3616549d31fa62b61a48e3efff52d7767b597a4407a8548e776c16976072d0aa7f5c96740cd207
 DIST menumaker-0.99.11.tar.gz 205196 BLAKE2B 5f1fa9cbf4fd739499db86f9173fbbea2c96900597d13185f2a2f2b5746a0a2c05d12b115782488cb5b1df1f48638bb831dbee4bb14c414fc11328f43d241c46 SHA512 b45b8f2de4e63bad673bf4463ac074b068d4889cf37644962d51e1514d07bef827679d060d1503e59ea4bfc460fdc643d850921b3a02babd1ea57249511ffa5a
 DIST menumaker-0.99.12.tar.gz 206208 BLAKE2B c909a103bd031f385a1b7c19c8f17ac97310b3f19b2cf3eeb4b77ebfa82ac388cb9d76b1c88523942ce9d20016ba86bd4fa3741b31e3f6cd9ca63e10c8cab65e SHA512 dceef85da4d68a7f13bb59e1d93a51632d4134e55c59fa9cdf4ec4497eb502959c1b65ccaa56c2410f2fc5a770a9b023ddec05e80d186c88cdc1a351e1869af6

diff --git a/x11-misc/menumaker/files/menumaker-0.99.10-AM_PATH_PYTHON.patch b/x11-misc/menumaker/files/menumaker-0.99.10-AM_PATH_PYTHON.patch
deleted file mode 100644
index 8e645a8b2fb..00000000000
--- a/x11-misc/menumaker/files/menumaker-0.99.10-AM_PATH_PYTHON.patch
+++ /dev/null
@@ -1,100 +0,0 @@
-Use AM_PATH_PYTHON instead of broken hacks
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -1,23 +1,13 @@
--AC_INIT(MenuMaker, 0.99.10)
-+AC_INIT([MenuMaker], [0.99.10])
- 
- AM_INIT_AUTOMAKE
- 
--#AZ_PYTHON_DEFAULT
-+AM_PATH_PYTHON
- 
--#AZ_PYTHON_WITH
--
--#if test -z "$PYTHON"; then
--#    AZ_PYTHON_PATH
--#fi
--
--#AZ_PYTHON_VERSION_ENSURE([2.7])
--
--#AZ_PYTHON_RUN
--
--AX_PYTHON
--
--AC_CONFIG_FILES([Makefile])
--AC_CONFIG_FILES([doc/Makefile])
--AC_CONFIG_FILES([Config.py])
-+AC_CONFIG_FILES([
-+	Makefile
-+	doc/Makefile
-+	Config.py
-+])
- 
- AC_OUTPUT
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -1,15 +1,53 @@
--ACLOCAL_AMFLAGS = -I m4
--
- SUBDIRS = doc
- 
- dist_bin_SCRIPTS = mmaker
- 
--nobase_dist_pkgdata_DATA = *.py MenuMaker/*.py Prophet/*.py Prophet/Desktop/*.py Prophet/Legacy/*.py Prophet/Debian/*.py Prophet/Debian/menu/*
-+python_PYTHON = \
-+	Config.py \
-+	Keywords.py \
-+	Paths.py
-+
-+pythonMenuMakerdir = $(pythondir)/MenuMaker
-+pythonMenuMaker_PYTHON = \
-+	MenuMaker/BlackBox.py \
-+	MenuMaker/CLI.py \
-+	MenuMaker/Deskmenu.py \
-+	MenuMaker/FluxBox.py \
-+	MenuMaker/IceWM.py \
-+	MenuMaker/__init__.py \
-+	MenuMaker/OpenBox3.py \
-+	MenuMaker/PekWM.py \
-+	MenuMaker/WindowMaker.py \
-+	MenuMaker/xBox.py \
-+	MenuMaker/Xfce4.py
-+
-+pythonProphetdir = $(pythondir)/Prophet
-+pythonProphet_PYTHON = \
-+	Prophet/Categories.py \
-+	Prophet/__init__.py
-+
-+pythonProphetDesktopdir = $(pythondir)/Prophet/Desktop
-+pythonProphetDesktop_PYTHON = \
-+	Prophet/Desktop/__init__.py
-+
-+pythonProphetLegacydir = $(pythondir)/Prophet/Legacy
-+pythonProphetLegacy_PYTHON = \
-+	Prophet/Legacy/Development.py \
-+	Prophet/Legacy/Editor.py \
-+	Prophet/Legacy/Emulator.py \
-+	Prophet/Legacy/Graphics.py \
-+	Prophet/Legacy/__init__.py \
-+	Prophet/Legacy/Multimedia.py \
-+	Prophet/Legacy/Network.py \
-+	Prophet/Legacy/Shell.py
- 
--install-exec-local :
--	echo "#!/usr/bin/env $(PYTHON_BIN)" > $(DESTDIR)/$(bindir)/mmaker
--	echo "import sys; sys.path = ['$(pkgdatadir)'] + sys.path" >> $(DESTDIR)/$(bindir)/mmaker
--	echo "import MenuMaker.CLI" >> $(DESTDIR)/$(bindir)/mmaker
-+pythonProphetDebiandir = $(pythondir)/Prophet/Debian
-+pythonProphetDebian_PYTHON = \
-+	Prophet/Debian/__init__.py
- 
--install-data-local :
--	$(PYTHON) -c 'import compileall; compileall.compile_dir(dir="$(DESTDIR)/$(pkgdatadir)", ddir="$(pkgdatadir)")'
-+pythonProphetDebianMenudir = $(pythondir)/Prophet/Debian/menu
-+dist_pythonProphetDebianMenu_DATA = \
-+	Prophet/Debian/menu/debian-2.2r5 \
-+	Prophet/Debian/menu/debian-8.1 \
-+	Prophet/Debian/menu/ubuntu-5.04 \
-+	Prophet/Debian/menu/ubuntu-5.10

diff --git a/x11-misc/menumaker/menumaker-0.99.10.ebuild b/x11-misc/menumaker/menumaker-0.99.10.ebuild
deleted file mode 100644
index b7fbd34187e..00000000000
--- a/x11-misc/menumaker/menumaker-0.99.10.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit autotools python-r1
-
-DESCRIPTION="Utility that scans through the system and generates a menu of installed programs"
-HOMEPAGE="http://menumaker.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-
-IUSE="doc"
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}
-	doc? ( sys-apps/texinfo )"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-0.99.10-AM_PATH_PYTHON.patch
-)
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	configure() {
-		ECONF_SOURCE="${S}" econf PYTHON="${EPYTHON}"
-	}
-	python_foreach_impl run_in_build_dir configure
-}
-
-src_compile() {
-	compile() {
-		default
-		use doc && emake html
-	}
-	python_foreach_impl run_in_build_dir compile
-}
-
-src_install() {
-	compile() {
-		default
-		use doc && emake DESTDIR="${D}" install-html
-	}
-	python_foreach_impl run_in_build_dir compile
-	python_replicate_script "${ED%/}"/usr/bin/mmaker
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/menumaker/, x11-misc/menumaker/files/
@ 2021-03-20  7:00 Joonas Niilola
  0 siblings, 0 replies; 3+ messages in thread
From: Joonas Niilola @ 2021-03-20  7:00 UTC (permalink / raw
  To: gentoo-commits

commit:     215a7dcde967789b2a53ab947d03fd91488cbdf0
Author:     Chris Mayo <aklhfex <AT> gmail <DOT> com>
AuthorDate: Thu Mar 18 19:26:57 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Mar 20 06:59:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=215a7dcd

x11-misc/menumaker: remove old 0.99.11

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Chris Mayo <aklhfex <AT> gmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 x11-misc/menumaker/Manifest                        |   1 -
 .../files/menumaker-0.99.11-AM_PATH_PYTHON.patch   | 100 ---------------------
 x11-misc/menumaker/menumaker-0.99.11.ebuild        |  58 ------------
 3 files changed, 159 deletions(-)

diff --git a/x11-misc/menumaker/Manifest b/x11-misc/menumaker/Manifest
index 199c44262ce..10cb05fd2c6 100644
--- a/x11-misc/menumaker/Manifest
+++ b/x11-misc/menumaker/Manifest
@@ -1,2 +1 @@
-DIST menumaker-0.99.11.tar.gz 205196 BLAKE2B 5f1fa9cbf4fd739499db86f9173fbbea2c96900597d13185f2a2f2b5746a0a2c05d12b115782488cb5b1df1f48638bb831dbee4bb14c414fc11328f43d241c46 SHA512 b45b8f2de4e63bad673bf4463ac074b068d4889cf37644962d51e1514d07bef827679d060d1503e59ea4bfc460fdc643d850921b3a02babd1ea57249511ffa5a
 DIST menumaker-0.99.12.tar.gz 206208 BLAKE2B c909a103bd031f385a1b7c19c8f17ac97310b3f19b2cf3eeb4b77ebfa82ac388cb9d76b1c88523942ce9d20016ba86bd4fa3741b31e3f6cd9ca63e10c8cab65e SHA512 dceef85da4d68a7f13bb59e1d93a51632d4134e55c59fa9cdf4ec4497eb502959c1b65ccaa56c2410f2fc5a770a9b023ddec05e80d186c88cdc1a351e1869af6

diff --git a/x11-misc/menumaker/files/menumaker-0.99.11-AM_PATH_PYTHON.patch b/x11-misc/menumaker/files/menumaker-0.99.11-AM_PATH_PYTHON.patch
deleted file mode 100644
index 73cf9b6ff80..00000000000
--- a/x11-misc/menumaker/files/menumaker-0.99.11-AM_PATH_PYTHON.patch
+++ /dev/null
@@ -1,100 +0,0 @@
-diff --git a/Makefile.am b/Makefile.am
-index b00b7bc..1c6f12b 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -1,15 +1,53 @@
--ACLOCAL_AMFLAGS = -I m4
--
- SUBDIRS = doc
- 
- dist_bin_SCRIPTS = mmaker
- 
--nobase_dist_pkgdata_DATA = *.py MenuMaker/*.py Prophet/*.py Prophet/Desktop/*.py Prophet/Legacy/*.py Prophet/Debian/*.py Prophet/Debian/menu/*
-+python_PYTHON = \
-+	Config.py \
-+	Keywords.py \
-+	Paths.py
-+
-+pythonMenuMakerdir = $(pythondir)/MenuMaker
-+pythonMenuMaker_PYTHON = \
-+	MenuMaker/BlackBox.py \
-+	MenuMaker/CLI.py \
-+	MenuMaker/Deskmenu.py \
-+	MenuMaker/FluxBox.py \
-+	MenuMaker/IceWM.py \
-+	MenuMaker/__init__.py \
-+	MenuMaker/OpenBox3.py \
-+	MenuMaker/PekWM.py \
-+	MenuMaker/WindowMaker.py \
-+	MenuMaker/xBox.py \
-+	MenuMaker/Xfce4.py
-+
-+pythonProphetdir = $(pythondir)/Prophet
-+pythonProphet_PYTHON = \
-+	Prophet/Categories.py \
-+	Prophet/__init__.py
-+
-+pythonProphetDesktopdir = $(pythondir)/Prophet/Desktop
-+pythonProphetDesktop_PYTHON = \
-+	Prophet/Desktop/__init__.py
-+
-+pythonProphetLegacydir = $(pythondir)/Prophet/Legacy
-+pythonProphetLegacy_PYTHON = \
-+	Prophet/Legacy/Development.py \
-+	Prophet/Legacy/Editor.py \
-+	Prophet/Legacy/Emulator.py \
-+	Prophet/Legacy/Graphics.py \
-+	Prophet/Legacy/__init__.py \
-+	Prophet/Legacy/Multimedia.py \
-+	Prophet/Legacy/Network.py \
-+	Prophet/Legacy/Shell.py
- 
--install-exec-local :
--	echo "#!/usr/bin/env $(PYTHON_BIN)" > $(DESTDIR)/$(bindir)/mmaker
--	echo "import sys; sys.path = ['$(pkgdatadir)'] + sys.path" >> $(DESTDIR)/$(bindir)/mmaker
--	echo "import MenuMaker.CLI" >> $(DESTDIR)/$(bindir)/mmaker
-+pythonProphetDebiandir = $(pythondir)/Prophet/Debian
-+pythonProphetDebian_PYTHON = \
-+	Prophet/Debian/__init__.py
- 
--install-data-local :
--	$(PYTHON) -c 'import compileall; compileall.compile_dir(dir="$(DESTDIR)/$(pkgdatadir)", ddir="$(pkgdatadir)")'
-+pythonProphetDebianMenudir = $(pythondir)/Prophet/Debian/menu
-+dist_pythonProphetDebianMenu_DATA = \
-+	Prophet/Debian/menu/debian-2.2r5 \
-+	Prophet/Debian/menu/debian-8.1 \
-+	Prophet/Debian/menu/ubuntu-5.04 \
-+	Prophet/Debian/menu/ubuntu-5.10
-diff --git a/configure.ac b/configure.ac
-index 248ffcb..1bde23b 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -2,22 +2,12 @@ AC_INIT(MenuMaker, 0.99.11)
- 
- AM_INIT_AUTOMAKE
- 
--#AZ_PYTHON_DEFAULT
-+AM_PATH_PYTHON
- 
--#AZ_PYTHON_WITH
--
--#if test -z "$PYTHON"; then
--#    AZ_PYTHON_PATH
--#fi
--
--#AZ_PYTHON_VERSION_ENSURE([2.7])
--
--#AZ_PYTHON_RUN
--
--AX_PYTHON
--
--AC_CONFIG_FILES([Makefile])
--AC_CONFIG_FILES([doc/Makefile])
--AC_CONFIG_FILES([Config.py])
-+AC_CONFIG_FILES([
-+	Makefile
-+	doc/Makefile
-+	Config.py
-+])
- 
- AC_OUTPUT

diff --git a/x11-misc/menumaker/menumaker-0.99.11.ebuild b/x11-misc/menumaker/menumaker-0.99.11.ebuild
deleted file mode 100644
index 9a121fbfd82..00000000000
--- a/x11-misc/menumaker/menumaker-0.99.11.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit autotools python-r1
-
-DESCRIPTION="Utility that scans through the system and generates a menu of installed programs"
-HOMEPAGE="http://menumaker.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-
-IUSE="doc"
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}
-	doc? ( sys-apps/texinfo )"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-AM_PATH_PYTHON.patch
-)
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	configure() {
-		ECONF_SOURCE="${S}" econf PYTHON="${EPYTHON}"
-	}
-	python_foreach_impl run_in_build_dir configure
-}
-
-src_compile() {
-	compile() {
-		default
-		use doc && emake html
-	}
-	python_foreach_impl run_in_build_dir compile
-}
-
-src_install() {
-	compile() {
-		default
-		use doc && emake DESTDIR="${D}" install-html
-	}
-	python_foreach_impl run_in_build_dir compile
-	python_replicate_script "${ED}"/usr/bin/mmaker
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-20  7:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-31 17:00 [gentoo-commits] repo/gentoo:master commit in: x11-misc/menumaker/, x11-misc/menumaker/files/ Joonas Niilola
  -- strict thread matches above, loose matches on Subject: below --
2020-06-28 10:41 Joonas Niilola
2021-03-20  7:00 Joonas Niilola

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox