* [gentoo-commits] repo/gentoo:master commit in: dev-util/confix-wrapper/
@ 2017-04-12 13:05 Michael Haubenwallner
0 siblings, 0 replies; 4+ messages in thread
From: Michael Haubenwallner @ 2017-04-12 13:05 UTC (permalink / raw
To: gentoo-commits
commit: dedb45d2f62a079b71d36e7d9fc938bfc95034db
Author: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 12 13:05:39 2017 +0000
Commit: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
CommitDate: Wed Apr 12 13:05:39 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dedb45d2
dev-util/confix-wrapper: add ~amd64-linux keyword
Package-Manager: portage-2.3.3
dev-util/confix-wrapper/confix-wrapper-0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/confix-wrapper/confix-wrapper-0.ebuild b/dev-util/confix-wrapper/confix-wrapper-0.ebuild
index ce153e1ee57..a7450e6f469 100644
--- a/dev-util/confix-wrapper/confix-wrapper-0.ebuild
+++ b/dev-util/confix-wrapper/confix-wrapper-0.ebuild
@@ -6,7 +6,7 @@ HOMEPAGE="http://confix.sourceforge.net"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc-aix ~x64-cygwin ~x86-linux ~sparc-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
IUSE=""
src_install() {
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/confix-wrapper/
@ 2017-10-04 9:09 Michał Górny
0 siblings, 0 replies; 4+ messages in thread
From: Michał Górny @ 2017-10-04 9:09 UTC (permalink / raw
To: gentoo-commits
commit: 644cb549bbe3995cf26f67b310c2a7bb000d2454
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 4 07:27:02 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct 4 09:09:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=644cb549
dev-util/confix-wrapper: Strip empty metadata.xml elements
dev-util/confix-wrapper/metadata.xml | 2 --
1 file changed, 2 deletions(-)
diff --git a/dev-util/confix-wrapper/metadata.xml b/dev-util/confix-wrapper/metadata.xml
index 94e0b5b7c91..5cbfb3aa528 100644
--- a/dev-util/confix-wrapper/metadata.xml
+++ b/dev-util/confix-wrapper/metadata.xml
@@ -5,8 +5,6 @@
<email>haubi@gentoo.org</email>
<name>Michael Haubenwallner</name>
</maintainer>
- <longdescription lang="en">
- </longdescription>
<upstream>
<remote-id type="sourceforge">confix</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/confix-wrapper/
@ 2019-10-16 9:03 Michael Haubenwallner
0 siblings, 0 replies; 4+ messages in thread
From: Michael Haubenwallner @ 2019-10-16 9:03 UTC (permalink / raw
To: gentoo-commits
commit: 01ff6b3e2a7898b1f51f87b30ddf3ae9074deb62
Author: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 16 09:01:28 2019 +0000
Commit: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
CommitDate: Wed Oct 16 09:02:42 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01ff6b3e
dev-util/confix-wrapper: bump to EAPI 7
Closes: https://bugs.gentoo.org/697324
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Michael Haubenwallner <haubi <AT> gentoo.org>
.../{confix-wrapper-0.ebuild => confix-wrapper-1.ebuild} | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/dev-util/confix-wrapper/confix-wrapper-0.ebuild b/dev-util/confix-wrapper/confix-wrapper-1.ebuild
similarity index 70%
rename from dev-util/confix-wrapper/confix-wrapper-0.ebuild
rename to dev-util/confix-wrapper/confix-wrapper-1.ebuild
index e8f8dcb4d2c..685b1b97161 100644
--- a/dev-util/confix-wrapper/confix-wrapper-0.ebuild
+++ b/dev-util/confix-wrapper/confix-wrapper-1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=0
+EAPI=7
DESCRIPTION="Wrapper to select either confix1.py or confix2.py"
HOMEPAGE="http://confix.sourceforge.net"
@@ -10,10 +10,10 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
IUSE=""
+S=${WORKDIR}
-src_install() {
- dodir /usr/bin
- cat >> "${ED:-${D}}"usr/bin/confix <<EOF
+src_unpack() {
+ cat >> confix <<EOF || die
#! ${EPREFIX:-}/bin/sh
confixpy=
if [ -f ./Confix2.dir ]; then
@@ -28,6 +28,8 @@ case \$# in
*) exec \${confixpy} "\$@" ;;
esac
EOF
- fperms a+x /usr/bin/confix || die "cannot set permissions"
- dosym confix /usr/bin/confix.py || die "cannot create 'confix' symlink"
+}
+
+src_install() {
+ dobin confix
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/confix-wrapper/
@ 2020-12-27 16:38 Fabian Groffen
0 siblings, 0 replies; 4+ messages in thread
From: Fabian Groffen @ 2020-12-27 16:38 UTC (permalink / raw
To: gentoo-commits
commit: eb8d80edd665e56e988b701708490c00210d6725
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 27 16:33:37 2020 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sun Dec 27 16:36:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb8d80ed
dev-util/confix-wrapper: drop ppc-aix m68k-mint
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
dev-util/confix-wrapper/confix-wrapper-1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-util/confix-wrapper/confix-wrapper-1.ebuild b/dev-util/confix-wrapper/confix-wrapper-1.ebuild
index 685b1b97161..3e4e5617ea2 100644
--- a/dev-util/confix-wrapper/confix-wrapper-1.ebuild
+++ b/dev-util/confix-wrapper/confix-wrapper-1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -8,7 +8,7 @@ HOMEPAGE="http://confix.sourceforge.net"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
IUSE=""
S=${WORKDIR}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-12-27 16:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-27 16:38 [gentoo-commits] repo/gentoo:master commit in: dev-util/confix-wrapper/ Fabian Groffen
-- strict thread matches above, loose matches on Subject: below --
2019-10-16 9:03 Michael Haubenwallner
2017-10-04 9:09 Michał Górny
2017-04-12 13:05 Michael Haubenwallner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox