* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2015-10-09 14:45 Ian Delaney
0 siblings, 0 replies; 30+ messages in thread
From: Ian Delaney @ 2015-10-09 14:45 UTC (permalink / raw
To: gentoo-commits
commit: 9a94bb3a771b84ec44d2359aa9af6e2fe9e9433d
Author: Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 9 14:43:33 2015 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Fri Oct 9 14:44:52 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a94bb3a
x11-wm/jwm: bump to -2.3.2
patch to bump submitted in gentoo bug by 'wraeth' added as
proxy maintainer under the proxy-maintainers herd in metadata
Gentoo bug: #562462
Package-Manager: portage-2.2.20.1
x11-wm/jwm/Manifest | 1 +
x11-wm/jwm/jwm-2.3.2.ebuild | 66 +++++++++++++++++++++++++++++++++++++++++++++
x11-wm/jwm/metadata.xml | 7 ++++-
3 files changed, 73 insertions(+), 1 deletion(-)
diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index e42995b..ba894dd 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -1 +1,2 @@
DIST jwm-2.1.0.tar.bz2 163590 SHA256 5c99f9023dc8c2597effdaacc240ff4c2e07e77c8244f3bf1de5cc483bcf08ab SHA512 68476ce1e57486110301582e7a42e709d8113634736063915b1e5ed8351187095f3dcafdc3194839a405959c0b7d5c10f31ae420ee54ce8d857e300194388c1e WHIRLPOOL 68a958e1384ce4a7c28a41ae239b44eaf509ece13d9f2630abf72c39a96670d0abd4aa45c9f47957655f6fd87ac8505c5694c253d2b3480537ca344324c319a6
+DIST jwm-2.3.2.tar.xz 325648 SHA256 92a3e66ceb847aac9fa09a24b16c93194f6c52e398f5a88f228b4986ea972c53 SHA512 34b9d482815e8b269203e1f5bf02d3e13f3186153755c9e74094e4a8af376f35b8bef4553056e83c20ba0c532e6d2606633d71272e186fe45dfed9e4ea836a27 WHIRLPOOL 93d140919edf16fb44bf93b88880d017174036de363a514862c5553ea84796311ba74fa2f6736fa2f78fe639e95ad6087b38fa962d77c83c4c4d863e35c06703
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
new file mode 100644
index 0000000..6263aef
--- /dev/null
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=4
+inherit eutils
+
+DESCRIPTION="Very fast and lightweight still powerful window manager for X"
+HOMEPAGE="http://joewing.net/programs/jwm/"
+SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
+IUSE="bidi debug jpeg png truetype xinerama xpm"
+
+RDEPEND="xpm? ( x11-libs/libXpm )
+ xinerama? ( x11-libs/libXinerama )
+ x11-libs/libXext
+ x11-libs/libXrender
+ x11-libs/libXau
+ x11-libs/libXdmcp
+ truetype? ( x11-libs/libXft )
+ png? ( media-libs/libpng )
+ jpeg? ( virtual/jpeg )
+ bidi? ( dev-libs/fribidi )
+ dev-libs/expat"
+DEPEND="${RDEPEND}
+ x11-proto/xproto
+ x11-proto/xextproto
+ xinerama? ( x11-proto/xineramaproto )"
+
+src_configure() {
+ econf \
+ $(use_enable debug) \
+ $(use_enable jpeg) \
+ $(use_enable png) \
+ $(use_enable truetype xft) \
+ $(use_enable xinerama) \
+ $(use_enable xpm) \
+ $(use_enable bidi fribidi) \
+ --enable-shape \
+ --enable-xrender
+}
+
+src_install() {
+ dodir /usr/bin
+ dodir /etc
+ dodir /usr/share/man
+ emake BINDIR="${D}/usr/bin" SYSCONF="${D}/etc" \
+ MANDIR="${D}/usr/share/man" install
+ rm "${D}"/etc/system.jwmrc
+
+ echo "#!/bin/sh" > jwm
+ echo "exec /usr/bin/jwm" >> jwm
+ exeinto /etc/X11/Sessions
+ doexe jwm
+
+ dodoc README.md example.jwmrc ChangeLog
+}
+
+pkg_postinst() {
+ einfo "Put an appropriate configuration file in /etc/system.jwmrc"
+ einfo "or in ~/.jwmrc."
+ einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
+}
diff --git a/x11-wm/jwm/metadata.xml b/x11-wm/jwm/metadata.xml
index 4538a68..986da1c 100644
--- a/x11-wm/jwm/metadata.xml
+++ b/x11-wm/jwm/metadata.xml
@@ -1,5 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer><email>maintainer-needed@gentoo.org</email></maintainer>
+ <herd>proxy-maintainers</herd>
+ <maintainer>
+ <email>wraeth@wraeth.id.au</email>
+ <name>Sam Jorna</name>
+ <description>Proxy maintainer for assignee of bugs</description>
+ </maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2015-10-10 13:16 Amy Winston
0 siblings, 0 replies; 30+ messages in thread
From: Amy Winston @ 2015-10-10 13:16 UTC (permalink / raw
To: gentoo-commits
commit: 793c8f7f0336a7f4de053851dc62ae767197e90b
Author: Amy Winston <amynka <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 10 13:15:19 2015 +0000
Commit: Amy Winston <amynka <AT> gentoo <DOT> org>
CommitDate: Sat Oct 10 13:15:19 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=793c8f7f
x11-wm/jwm:EAPI bump,slot dependencies fix,add config file,X11 session wrapper added. By wraeth.
Package-Manager: portage-2.2.20.1
x11-wm/jwm/jwm-2.3.2.ebuild | 21 +++++++++------------
1 file changed, 9 insertions(+), 12 deletions(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 6263aef..6b8baaf 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=4
+EAPI=5
inherit eutils
DESCRIPTION="Very fast and lightweight still powerful window manager for X"
@@ -21,8 +21,8 @@ RDEPEND="xpm? ( x11-libs/libXpm )
x11-libs/libXau
x11-libs/libXdmcp
truetype? ( x11-libs/libXft )
- png? ( media-libs/libpng )
- jpeg? ( virtual/jpeg )
+ png? ( media-libs/libpng:= )
+ jpeg? ( virtual/jpeg:= )
bidi? ( dev-libs/fribidi )
dev-libs/expat"
DEPEND="${RDEPEND}
@@ -49,18 +49,15 @@ src_install() {
dodir /usr/share/man
emake BINDIR="${D}/usr/bin" SYSCONF="${D}/etc" \
MANDIR="${D}/usr/share/man" install
- rm "${D}"/etc/system.jwmrc
- echo "#!/bin/sh" > jwm
- echo "exec /usr/bin/jwm" >> jwm
- exeinto /etc/X11/Sessions
- doexe jwm
+ make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
dodoc README.md example.jwmrc ChangeLog
}
pkg_postinst() {
- einfo "Put an appropriate configuration file in /etc/system.jwmrc"
- einfo "or in ~/.jwmrc."
+ einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
+ einfo "or per-user by creating a configuration file in ~/.jwmrc"
+ einfo
einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
-}
+}
\ No newline at end of file
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2015-10-11 7:57 Jeroen Roovers
0 siblings, 0 replies; 30+ messages in thread
From: Jeroen Roovers @ 2015-10-11 7:57 UTC (permalink / raw
To: gentoo-commits
commit: d882938a1bbf3b0a86e3f116f4210bd7dbc2d491
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 11 07:53:38 2015 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Oct 11 07:56:52 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d882938a
x11-wm/jwm: Use default emake install to simply src_install() and fix sandbox violation in locales.
x11-wm/jwm/jwm-2.3.2.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 6b8baaf..0332d56 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -44,11 +44,11 @@ src_configure() {
}
src_install() {
- dodir /usr/bin
dodir /etc
+ dodir /usr/bin
dodir /usr/share/man
- emake BINDIR="${D}/usr/bin" SYSCONF="${D}/etc" \
- MANDIR="${D}/usr/share/man" install
+
+ default
make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
@@ -60,4 +60,4 @@ pkg_postinst() {
einfo "or per-user by creating a configuration file in ~/.jwmrc"
einfo
einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
-}
\ No newline at end of file
+}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2015-10-11 7:57 Jeroen Roovers
0 siblings, 0 replies; 30+ messages in thread
From: Jeroen Roovers @ 2015-10-11 7:57 UTC (permalink / raw
To: gentoo-commits
commit: 81f6ce98712fb29b26cdf2205dad29b038b1a46a
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 11 07:54:47 2015 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Oct 11 07:56:57 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81f6ce98
Revert "x11-wm/jwm: Use default emake install to simply src_install() and fix sandbox violation in locales."
This reverts commit d63248a1136cac7205f98a8ed968b9eba7f985a5.
x11-wm/jwm/jwm-2.3.2.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 0332d56..6b8baaf 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -44,11 +44,11 @@ src_configure() {
}
src_install() {
- dodir /etc
dodir /usr/bin
+ dodir /etc
dodir /usr/share/man
-
- default
+ emake BINDIR="${D}/usr/bin" SYSCONF="${D}/etc" \
+ MANDIR="${D}/usr/share/man" install
make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
@@ -60,4 +60,4 @@ pkg_postinst() {
einfo "or per-user by creating a configuration file in ~/.jwmrc"
einfo
einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
-}
+}
\ No newline at end of file
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2015-10-11 7:57 Jeroen Roovers
0 siblings, 0 replies; 30+ messages in thread
From: Jeroen Roovers @ 2015-10-11 7:57 UTC (permalink / raw
To: gentoo-commits
commit: ab691b79e565d9c344f0f092816ec557adf2b7ca
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 11 07:56:17 2015 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Oct 11 07:57:02 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab691b79
x11-wm/jwm: Use default emake install to simply src_install() and fix sandbox violation in locales.
Package-Manager: portage-2.2.23
x11-wm/jwm/jwm-2.3.2.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 6b8baaf..0332d56 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -44,11 +44,11 @@ src_configure() {
}
src_install() {
- dodir /usr/bin
dodir /etc
+ dodir /usr/bin
dodir /usr/share/man
- emake BINDIR="${D}/usr/bin" SYSCONF="${D}/etc" \
- MANDIR="${D}/usr/share/man" install
+
+ default
make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
@@ -60,4 +60,4 @@ pkg_postinst() {
einfo "or per-user by creating a configuration file in ~/.jwmrc"
einfo
einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
-}
\ No newline at end of file
+}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2015-10-12 11:38 Amy Winston
0 siblings, 0 replies; 30+ messages in thread
From: Amy Winston @ 2015-10-12 11:38 UTC (permalink / raw
To: gentoo-commits
commit: 6f16a2aaee73a02e5ae2205b9b879bae354b2100
Author: Amy Winston <amynka <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 12 11:38:07 2015 +0000
Commit: Amy Winston <amynka <AT> gentoo <DOT> org>
CommitDate: Mon Oct 12 11:38:07 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f16a2aa
x11-wm/jwm: Very important slot fix. By wraeth.
Package-Manager: portage-2.2.20.1
x11-wm/jwm/jwm-2.3.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 0332d56..64d42ed 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -21,8 +21,8 @@ RDEPEND="xpm? ( x11-libs/libXpm )
x11-libs/libXau
x11-libs/libXdmcp
truetype? ( x11-libs/libXft )
- png? ( media-libs/libpng:= )
- jpeg? ( virtual/jpeg:= )
+ png? ( media-libs/libpng:0= )
+ jpeg? ( virtual/jpeg:0= )
bidi? ( dev-libs/fribidi )
dev-libs/expat"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2016-01-10 8:21 Amy Winston
0 siblings, 0 replies; 30+ messages in thread
From: Amy Winston @ 2016-01-10 8:21 UTC (permalink / raw
To: gentoo-commits
commit: 05f1510160db6d30dfe3a064a7a71449768f45cf
Author: Amy Winston <amynka <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 10 08:20:42 2016 +0000
Commit: Amy Winston <amynka <AT> gentoo <DOT> org>
CommitDate: Sun Jan 10 08:20:42 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05f15101
x11-wm/jwm: version bump 2.3.4. By Wraeth
Package-Manager: portage-2.2.24
x11-wm/jwm/Manifest | 1 +
x11-wm/jwm/jwm-2.3.4.ebuild | 63 +++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 64 insertions(+)
diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index ba894dd..9d6bc7e 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -1,2 +1,3 @@
DIST jwm-2.1.0.tar.bz2 163590 SHA256 5c99f9023dc8c2597effdaacc240ff4c2e07e77c8244f3bf1de5cc483bcf08ab SHA512 68476ce1e57486110301582e7a42e709d8113634736063915b1e5ed8351187095f3dcafdc3194839a405959c0b7d5c10f31ae420ee54ce8d857e300194388c1e WHIRLPOOL 68a958e1384ce4a7c28a41ae239b44eaf509ece13d9f2630abf72c39a96670d0abd4aa45c9f47957655f6fd87ac8505c5694c253d2b3480537ca344324c319a6
DIST jwm-2.3.2.tar.xz 325648 SHA256 92a3e66ceb847aac9fa09a24b16c93194f6c52e398f5a88f228b4986ea972c53 SHA512 34b9d482815e8b269203e1f5bf02d3e13f3186153755c9e74094e4a8af376f35b8bef4553056e83c20ba0c532e6d2606633d71272e186fe45dfed9e4ea836a27 WHIRLPOOL 93d140919edf16fb44bf93b88880d017174036de363a514862c5553ea84796311ba74fa2f6736fa2f78fe639e95ad6087b38fa962d77c83c4c4d863e35c06703
+DIST jwm-2.3.4.tar.xz 332140 SHA256 249867d2e21fab27f69d4f64b5c8acba5ddc540030e31e450c20ed4b647a06ee SHA512 db9f46ced4b1f8128673b551cd865b6c9b6c8d43f839cfe898168251e8326d402a510ce77144273488c1e65a96d66e16124e4b4749a5a96a9057c1eb20c2bee1 WHIRLPOOL 21328d615fba64fdda943ff0f90991f6f9b19106c0d05d04f2399d01fe63be66f07c9fa6ced34074adbc3d1b7720a602dfe687c41d6701f1f40b414f89c35075
diff --git a/x11-wm/jwm/jwm-2.3.4.ebuild b/x11-wm/jwm/jwm-2.3.4.ebuild
new file mode 100644
index 0000000..975ab09
--- /dev/null
+++ b/x11-wm/jwm/jwm-2.3.4.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils
+
+DESCRIPTION="Very fast and lightweight still powerful window manager for X"
+HOMEPAGE="http://joewing.net/programs/jwm/"
+SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
+IUSE="bidi debug jpeg png truetype xinerama xpm"
+
+RDEPEND="xpm? ( x11-libs/libXpm )
+ xinerama? ( x11-libs/libXinerama )
+ x11-libs/libXext
+ x11-libs/libXrender
+ x11-libs/libXau
+ x11-libs/libXdmcp
+ truetype? ( x11-libs/libXft )
+ png? ( media-libs/libpng:0= )
+ jpeg? ( virtual/jpeg:0= )
+ bidi? ( dev-libs/fribidi )
+ dev-libs/expat"
+DEPEND="${RDEPEND}
+ x11-proto/xproto
+ x11-proto/xextproto
+ xinerama? ( x11-proto/xineramaproto )"
+
+src_configure() {
+ econf \
+ $(use_enable debug) \
+ $(use_enable jpeg) \
+ $(use_enable png) \
+ $(use_enable truetype xft) \
+ $(use_enable xinerama) \
+ $(use_enable xpm) \
+ $(use_enable bidi fribidi) \
+ --enable-shape \
+ --enable-xrender
+}
+
+src_install() {
+ dodir /etc
+ dodir /usr/bin
+ dodir /usr/share/man
+
+ default
+
+ make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
+
+ dodoc README.md example.jwmrc ChangeLog
+}
+
+pkg_postinst() {
+ einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
+ einfo "or per-user by creating a configuration file in ~/.jwmrc"
+ einfo
+ einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
+}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2016-01-15 9:03 Agostino Sarubbo
0 siblings, 0 replies; 30+ messages in thread
From: Agostino Sarubbo @ 2016-01-15 9:03 UTC (permalink / raw
To: gentoo-commits
commit: b6d701f1c5a197e94aa9151d5fd569a4693f85ae
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 15 09:01:25 2016 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 15 09:01:25 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6d701f1
x11-wm/jwm: amd64 stable wrt bug #571450
Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-wm/jwm/jwm-2.3.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 64d42ed..70e77ed 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
IUSE="bidi debug jpeg png truetype xinerama xpm"
RDEPEND="xpm? ( x11-libs/libXpm )
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2016-01-17 17:14 Agostino Sarubbo
0 siblings, 0 replies; 30+ messages in thread
From: Agostino Sarubbo @ 2016-01-17 17:14 UTC (permalink / raw
To: gentoo-commits
commit: bb9ecd5ed6dff37c3b2c698d04281843012d8612
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 17 17:14:19 2016 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Jan 17 17:14:19 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9ecd5e
x11-wm/jwm: ppc stable wrt bug #571450
Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-wm/jwm/jwm-2.3.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 70e77ed..e2ceeaf 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~hppa ppc ~x86 ~x86-fbsd"
IUSE="bidi debug jpeg png truetype xinerama xpm"
RDEPEND="xpm? ( x11-libs/libXpm )
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2016-02-15 5:07 Jeroen Roovers
0 siblings, 0 replies; 30+ messages in thread
From: Jeroen Roovers @ 2016-02-15 5:07 UTC (permalink / raw
To: gentoo-commits
commit: ef937720908492831c4aa4fa7b40ab455b583095
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 15 05:07:04 2016 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Feb 15 05:07:04 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef937720
x11-wm/jwm: Stable for HPPA (bug #571450).
Package-Manager: portage-2.2.27
RepoMan-Options: --ignore-arches
x11-wm/jwm/jwm-2.3.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 73d320e..7f08323 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~hppa ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ppc x86 ~x86-fbsd"
IUSE="bidi debug jpeg png truetype xinerama xpm"
RDEPEND="xpm? ( x11-libs/libXpm )
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2016-03-14 23:37 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2016-03-14 23:37 UTC (permalink / raw
To: gentoo-commits
commit: 8a8ce7c17ff39d69358804a7f805c06868e68c32
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 14 23:36:05 2016 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Mon Mar 14 23:36:05 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a8ce7c1
x11-wm/jwm: update metadata
Package-Manager: portage-2.2.28
x11-wm/jwm/metadata.xml | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/x11-wm/jwm/metadata.xml b/x11-wm/jwm/metadata.xml
index 467010c..3b4e6c1 100644
--- a/x11-wm/jwm/metadata.xml
+++ b/x11-wm/jwm/metadata.xml
@@ -2,12 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
- <email>wraeth@wraeth.id.au</email>
+ <email>wraeth@gentoo.org</email>
<name>Sam Jorna</name>
- <description>Proxy maintainer for assignee of bugs</description>
- </maintainer>
-<maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
</maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2016-03-16 0:39 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2016-03-16 0:39 UTC (permalink / raw
To: gentoo-commits
commit: 630df228dcc56f094669fb7a96943aa0c792d2e8
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 00:39:14 2016 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 00:39:14 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=630df228
x11-wm/jwm: revbump to add missing desktop file
Package-Manager: portage-2.2.28
x11-wm/jwm/{jwm-2.3.4.ebuild => jwm-2.3.4-r1.ebuild} | 3 +++
1 file changed, 3 insertions(+)
diff --git a/x11-wm/jwm/jwm-2.3.4.ebuild b/x11-wm/jwm/jwm-2.3.4-r1.ebuild
similarity index 95%
rename from x11-wm/jwm/jwm-2.3.4.ebuild
rename to x11-wm/jwm/jwm-2.3.4-r1.ebuild
index 975ab09..e1421c3 100644
--- a/x11-wm/jwm/jwm-2.3.4.ebuild
+++ b/x11-wm/jwm/jwm-2.3.4-r1.ebuild
@@ -52,6 +52,9 @@ src_install() {
make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
+ insinto "/usr/share/xsessions"
+ doins "${FILESDIR}"/jwm.desktop
+
dodoc README.md example.jwmrc ChangeLog
}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2016-05-16 6:58 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2016-05-16 6:58 UTC (permalink / raw
To: gentoo-commits
commit: 7a9a41f8d6a6f2b374a7bee65bbe3ffa2ff11a96
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Mon May 16 06:53:44 2016 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Mon May 16 06:57:58 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a9a41f8
x11-wm/jwm: bump to 2.3.5
Bumps version to 2.3.5, adds additional USE flags and related deps.
Add additional details to metadata.xml.
Gentoo-bug: 582944
Package-Manager: portage-2.2.28
x11-wm/jwm/Manifest | 1 +
x11-wm/jwm/jwm-2.3.5.ebuild | 79 +++++++++++++++++++++++++++++++++++++++++++++
x11-wm/jwm/metadata.xml | 14 ++++++++
3 files changed, 94 insertions(+)
diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index 9d6bc7e..0794ff3 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -1,3 +1,4 @@
DIST jwm-2.1.0.tar.bz2 163590 SHA256 5c99f9023dc8c2597effdaacc240ff4c2e07e77c8244f3bf1de5cc483bcf08ab SHA512 68476ce1e57486110301582e7a42e709d8113634736063915b1e5ed8351187095f3dcafdc3194839a405959c0b7d5c10f31ae420ee54ce8d857e300194388c1e WHIRLPOOL 68a958e1384ce4a7c28a41ae239b44eaf509ece13d9f2630abf72c39a96670d0abd4aa45c9f47957655f6fd87ac8505c5694c253d2b3480537ca344324c319a6
DIST jwm-2.3.2.tar.xz 325648 SHA256 92a3e66ceb847aac9fa09a24b16c93194f6c52e398f5a88f228b4986ea972c53 SHA512 34b9d482815e8b269203e1f5bf02d3e13f3186153755c9e74094e4a8af376f35b8bef4553056e83c20ba0c532e6d2606633d71272e186fe45dfed9e4ea836a27 WHIRLPOOL 93d140919edf16fb44bf93b88880d017174036de363a514862c5553ea84796311ba74fa2f6736fa2f78fe639e95ad6087b38fa962d77c83c4c4d863e35c06703
DIST jwm-2.3.4.tar.xz 332140 SHA256 249867d2e21fab27f69d4f64b5c8acba5ddc540030e31e450c20ed4b647a06ee SHA512 db9f46ced4b1f8128673b551cd865b6c9b6c8d43f839cfe898168251e8326d402a510ce77144273488c1e65a96d66e16124e4b4749a5a96a9057c1eb20c2bee1 WHIRLPOOL 21328d615fba64fdda943ff0f90991f6f9b19106c0d05d04f2399d01fe63be66f07c9fa6ced34074adbc3d1b7720a602dfe687c41d6701f1f40b414f89c35075
+DIST jwm-2.3.5.tar.xz 339792 SHA256 b0a7908ba3299f82542125f67e329a8a727c2761b4abaa6d0d489bdb8629acf0 SHA512 cb45a5fb349e6c130b89996ba11a99059e95ccedc4ea82ad527676130833fd93297b64fad905a1f22908a4ae69cca544a6353c37160ed8df3e1089f40f9a0565 WHIRLPOOL da46d3ddfefd60d22bd8fd623bebeeda82544f8408b22414a88aa5da4bc138087bc39c7363674982ffb6f73f3729665328bb42dbbff6da608c1ab516f5037137
diff --git a/x11-wm/jwm/jwm-2.3.5.ebuild b/x11-wm/jwm/jwm-2.3.5.ebuild
new file mode 100644
index 0000000..64c0152
--- /dev/null
+++ b/x11-wm/jwm/jwm-2.3.5.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="Very fast and lightweight still powerful window manager for X"
+HOMEPAGE="http://joewing.net/programs/jwm/"
+SRC_URI="http://joewing.net/projects/${PN}/releases/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
+IUSE="bidi cairo debug iconv jpeg nls png truetype xinerama xpm"
+
+RDEPEND="dev-libs/expat
+ x11-libs/libXau
+ x11-libs/libXdmcp
+ x11-libs/libXext
+ x11-libs/libXmu
+ x11-libs/libXrender
+ bidi? ( dev-libs/fribidi )
+ cairo? (
+ x11-libs/cairo
+ gnome-base/librsvg
+ )
+ iconv? ( virtual/libiconv )
+ jpeg? ( virtual/jpeg:0= )
+ nls? ( sys-devel/gettext
+ virtual/libintl )
+ png? ( media-libs/libpng:0= )
+ truetype? ( x11-libs/libXft )
+ xinerama? ( x11-libs/libXinerama )
+ xpm? ( x11-libs/libXpm )"
+DEPEND="${RDEPEND}
+ x11-proto/xproto
+ x11-proto/xextproto
+ xinerama? ( x11-proto/xineramaproto )"
+
+src_configure() {
+ econf \
+ $(use_enable bidi fribidi) \
+ $(use_enable cairo) \
+ $(use_enable debug) \
+ $(use_enable iconv) \
+ $(use_enable jpeg) \
+ $(use_enable nls) \
+ $(use_enable png) \
+ $(use_enable cairo rsvg) \
+ $(use_enable truetype xft) \
+ $(use_enable xinerama) \
+ $(use_enable xpm) \
+ --enable-shape \
+ --enable-xrender \
+ --disable-rpath
+}
+
+src_install() {
+ dodir /etc
+ dodir /usr/bin
+ dodir /usr/share/man
+
+ default
+
+ make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
+
+ insinto "/usr/share/xsessions"
+ doins "${FILESDIR}"/jwm.desktop
+
+ dodoc README.md example.jwmrc ChangeLog
+}
+
+pkg_postinst() {
+ einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
+ einfo "or per-user by creating a configuration file in ~/.jwmrc"
+ einfo
+ einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
+}
diff --git a/x11-wm/jwm/metadata.xml b/x11-wm/jwm/metadata.xml
index 3b4e6c1..1f5b8e8 100644
--- a/x11-wm/jwm/metadata.xml
+++ b/x11-wm/jwm/metadata.xml
@@ -5,4 +5,18 @@
<email>wraeth@gentoo.org</email>
<name>Sam Jorna</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">joewing/jwm</remote-id>
+ <changelog>http://joewing.net/projects/jwm/snapshots/ChangeLog</changelog>
+ <bugs-to>https://github.com/joewing/jwm/issues</bugs-to>
+ </upstream>
+ <longdescription>
+ JWM is a light-weight window manager for the X11 Window System. JWM is
+ written in C and uses only Xlib at a minimum. Because of its small
+ footprint, JWM makes a good window manager for older computers and less
+ powerful systems, such as the Raspberry Pi, though it is perfectly capable
+ of running on modern systems. JWM is included in small Linux distributions
+ such as Puppy Linux and Damn Small Linux, and it is available as a separate
+ package in many other distributions.
+ </longdescription>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2016-05-16 9:07 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2016-05-16 9:07 UTC (permalink / raw
To: gentoo-commits
commit: 6f3d6550cf82f2dc4e64db42d8146f2a97efacfb
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Mon May 16 09:06:17 2016 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Mon May 16 09:07:07 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f3d6550
x11-wm/jwm: fix hompage
Gentoo-Bug: 583140
Package-Manager: portage-2.2.28
x11-wm/jwm/jwm-2.3.2.ebuild | 2 +-
x11-wm/jwm/jwm-2.3.4-r1.ebuild | 2 +-
x11-wm/jwm/jwm-2.3.5.ebuild | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 7f08323..e0a7a38 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -6,7 +6,7 @@ EAPI=5
inherit eutils
DESCRIPTION="Very fast and lightweight still powerful window manager for X"
-HOMEPAGE="http://joewing.net/programs/jwm/"
+HOMEPAGE="http://joewing.net/projects/jwm/"
SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.xz"
LICENSE="GPL-2"
diff --git a/x11-wm/jwm/jwm-2.3.4-r1.ebuild b/x11-wm/jwm/jwm-2.3.4-r1.ebuild
index e1421c3..6382ba0 100644
--- a/x11-wm/jwm/jwm-2.3.4-r1.ebuild
+++ b/x11-wm/jwm/jwm-2.3.4-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=5
inherit eutils
DESCRIPTION="Very fast and lightweight still powerful window manager for X"
-HOMEPAGE="http://joewing.net/programs/jwm/"
+HOMEPAGE="http://joewing.net/projects/jwm/"
SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.xz"
LICENSE="GPL-2"
diff --git a/x11-wm/jwm/jwm-2.3.5.ebuild b/x11-wm/jwm/jwm-2.3.5.ebuild
index 64c0152..4b6d9b1 100644
--- a/x11-wm/jwm/jwm-2.3.5.ebuild
+++ b/x11-wm/jwm/jwm-2.3.5.ebuild
@@ -6,7 +6,7 @@ EAPI=6
inherit eutils
DESCRIPTION="Very fast and lightweight still powerful window manager for X"
-HOMEPAGE="http://joewing.net/programs/jwm/"
+HOMEPAGE="http://joewing.net/projects/jwm/"
SRC_URI="http://joewing.net/projects/${PN}/releases/${P}.tar.xz"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2016-11-08 21:30 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2016-11-08 21:30 UTC (permalink / raw
To: gentoo-commits
commit: ce79af16f71827e275145c2dd882455ba67a00ab
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 8 21:29:13 2016 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Tue Nov 8 21:29:48 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce79af16
x11-wm/jwm: bump to 2.3.6
Package-Manager: portage-2.3.2
x11-wm/jwm/Manifest | 1 +
x11-wm/jwm/jwm-2.3.6.ebuild | 80 +++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 81 insertions(+)
diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index bcf0fd6..c49f4df 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -1,3 +1,4 @@
DIST jwm-2.3.2.tar.xz 325648 SHA256 92a3e66ceb847aac9fa09a24b16c93194f6c52e398f5a88f228b4986ea972c53 SHA512 34b9d482815e8b269203e1f5bf02d3e13f3186153755c9e74094e4a8af376f35b8bef4553056e83c20ba0c532e6d2606633d71272e186fe45dfed9e4ea836a27 WHIRLPOOL 93d140919edf16fb44bf93b88880d017174036de363a514862c5553ea84796311ba74fa2f6736fa2f78fe639e95ad6087b38fa962d77c83c4c4d863e35c06703
DIST jwm-2.3.4.tar.xz 332140 SHA256 249867d2e21fab27f69d4f64b5c8acba5ddc540030e31e450c20ed4b647a06ee SHA512 db9f46ced4b1f8128673b551cd865b6c9b6c8d43f839cfe898168251e8326d402a510ce77144273488c1e65a96d66e16124e4b4749a5a96a9057c1eb20c2bee1 WHIRLPOOL 21328d615fba64fdda943ff0f90991f6f9b19106c0d05d04f2399d01fe63be66f07c9fa6ced34074adbc3d1b7720a602dfe687c41d6701f1f40b414f89c35075
DIST jwm-2.3.5.tar.xz 339792 SHA256 b0a7908ba3299f82542125f67e329a8a727c2761b4abaa6d0d489bdb8629acf0 SHA512 cb45a5fb349e6c130b89996ba11a99059e95ccedc4ea82ad527676130833fd93297b64fad905a1f22908a4ae69cca544a6353c37160ed8df3e1089f40f9a0565 WHIRLPOOL da46d3ddfefd60d22bd8fd623bebeeda82544f8408b22414a88aa5da4bc138087bc39c7363674982ffb6f73f3729665328bb42dbbff6da608c1ab516f5037137
+DIST jwm-2.3.6.tar.xz 343644 SHA256 a0fedbdf790d2ad2016730db593c436def277507bcdf96d6e85d7f4dc435273d SHA512 ed3556bf2e28bfcf36b2b145e6c08e75c24e47b723b16ce072100d2773338d819c5465e7af2dc6b842e2e35f375ec3a0b85d9987e0a8acecdbe628dc09eabd11 WHIRLPOOL 5b3d35cebef6c0a359179062ce54b3b48dbfbe67abda05a5111b52c55c6b0fd0391e9b127bc14a454e219853dc11020312bf4c0f182ba9fdd7cb94d941ba4e0d
diff --git a/x11-wm/jwm/jwm-2.3.6.ebuild b/x11-wm/jwm/jwm-2.3.6.ebuild
new file mode 100644
index 00000000..1325308
--- /dev/null
+++ b/x11-wm/jwm/jwm-2.3.6.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="Very fast and lightweight still powerful window manager for X"
+HOMEPAGE="http://joewing.net/projects/jwm/"
+SRC_URI="http://joewing.net/projects/${PN}/releases/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
+IUSE="bidi cairo debug iconv jpeg nls png truetype xinerama xpm"
+
+RDEPEND="dev-libs/expat
+ x11-libs/libXau
+ x11-libs/libXdmcp
+ x11-libs/libXext
+ x11-libs/libXmu
+ x11-libs/libXrender
+ bidi? ( dev-libs/fribidi )
+ cairo? (
+ x11-libs/cairo
+ gnome-base/librsvg
+ )
+ iconv? ( virtual/libiconv )
+ jpeg? ( virtual/jpeg:0= )
+ nls? ( sys-devel/gettext
+ virtual/libintl )
+ png? ( media-libs/libpng:0= )
+ truetype? ( x11-libs/libXft )
+ xinerama? ( x11-libs/libXinerama )
+ xpm? ( x11-libs/libXpm )"
+DEPEND="${RDEPEND}
+ x11-proto/xproto
+ x11-proto/xextproto
+ xinerama? ( x11-proto/xineramaproto )"
+
+src_configure() {
+ econf \
+ $(use_enable bidi fribidi) \
+ $(use_enable cairo) \
+ $(use_enable debug) \
+ $(use_enable jpeg) \
+ $(use_enable nls) \
+ $(use_enable png) \
+ $(use_enable cairo rsvg) \
+ $(use_enable truetype xft) \
+ $(use_enable xinerama) \
+ $(use_enable xpm) \
+ $(use_with iconv libiconv-prefix /usr) \
+ $(use_with nls libintl-prefix /usr) \
+ --enable-shape \
+ --enable-xrender \
+ --disable-rpath
+}
+
+src_install() {
+ dodir /etc
+ dodir /usr/bin
+ dodir /usr/share/man
+
+ default
+
+ make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
+
+ insinto "/usr/share/xsessions"
+ doins "${FILESDIR}"/jwm.desktop
+
+ dodoc README.md example.jwmrc ChangeLog
+}
+
+pkg_postinst() {
+ einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
+ einfo "or per-user by creating a configuration file in ~/.jwmrc"
+ einfo
+ einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
+}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2018-04-11 3:21 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2018-04-11 3:21 UTC (permalink / raw
To: gentoo-commits
commit: 7d1def6e6a798e31da22848448f56c25685edffa
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 11 03:19:06 2018 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Wed Apr 11 03:21:21 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d1def6e
x11-wm/jwm: bump to 2.3.7
Package-Manager: Portage-2.3.28, Repoman-2.3.9
x11-wm/jwm/Manifest | 1 +
x11-wm/jwm/jwm-2.3.7.ebuild | 79 +++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index f15c902224d..ee509652595 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -2,3 +2,4 @@ DIST jwm-2.3.2.tar.xz 325648 BLAKE2B 93654116b0dedff4ad03c7981a9978530a1989edf47
DIST jwm-2.3.4.tar.xz 332140 BLAKE2B ad2ea9d094b6cded0891176c97900b8491c3d81f64b1df7617c8936d581c849c4515deb8795f3f10018f469c1a97617fa97ec50fb2088dc7ea221ed55af2de97 SHA512 db9f46ced4b1f8128673b551cd865b6c9b6c8d43f839cfe898168251e8326d402a510ce77144273488c1e65a96d66e16124e4b4749a5a96a9057c1eb20c2bee1
DIST jwm-2.3.5.tar.xz 339792 BLAKE2B dcbaeac2e6842499509651155618821cf302b3e3ae1b013f3811c49e65ac83122e00aff33af4a366ea0c126f2a009a0baba0538e132f00efac306319b94e50c4 SHA512 cb45a5fb349e6c130b89996ba11a99059e95ccedc4ea82ad527676130833fd93297b64fad905a1f22908a4ae69cca544a6353c37160ed8df3e1089f40f9a0565
DIST jwm-2.3.6.tar.xz 343644 BLAKE2B 44d6156b79957352b52f8f4000f12e655259f2125eeba183a087358b7537d3affd7125a50b0ff93efa9c8d2599d08e7cc3db6c26807ad587481ce689541aaad0 SHA512 ed3556bf2e28bfcf36b2b145e6c08e75c24e47b723b16ce072100d2773338d819c5465e7af2dc6b842e2e35f375ec3a0b85d9987e0a8acecdbe628dc09eabd11
+DIST jwm-2.3.7.tar.xz 350332 BLAKE2B 479d853ae9b1dd2d1a39c9e823f39cd7671b477f6e9878bc6652072bce1ce364f8c392663dc1187a4a4970918c0f68cd506654f6dfe6c91cc5f1f2f275a2021b SHA512 dab0241518e52aa2e3e1ef3f67b6965ceb683bdb0224de7d3a653d76440606d70e86e35047eda40ea53a80aa227408be77739ad7c53d51f53026e3d113ab7efc
diff --git a/x11-wm/jwm/jwm-2.3.7.ebuild b/x11-wm/jwm/jwm-2.3.7.ebuild
new file mode 100644
index 00000000000..891ecda192e
--- /dev/null
+++ b/x11-wm/jwm/jwm-2.3.7.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="Very fast and lightweight still powerful window manager for X"
+HOMEPAGE="http://joewing.net/projects/jwm/"
+SRC_URI="http://joewing.net/projects/${PN}/releases/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
+IUSE="bidi cairo debug iconv jpeg nls png truetype xinerama xpm"
+
+RDEPEND="dev-libs/expat
+ x11-libs/libXau
+ x11-libs/libXdmcp
+ x11-libs/libXext
+ x11-libs/libXmu
+ x11-libs/libXrender
+ bidi? ( dev-libs/fribidi )
+ cairo? (
+ x11-libs/cairo
+ gnome-base/librsvg
+ )
+ iconv? ( virtual/libiconv )
+ jpeg? ( virtual/jpeg:0= )
+ nls? ( sys-devel/gettext
+ virtual/libintl )
+ png? ( media-libs/libpng:0= )
+ truetype? ( x11-libs/libXft )
+ xinerama? ( x11-libs/libXinerama )
+ xpm? ( x11-libs/libXpm )"
+DEPEND="${RDEPEND}
+ x11-proto/xproto
+ x11-proto/xextproto
+ xinerama? ( x11-proto/xineramaproto )"
+
+src_configure() {
+ econf \
+ $(use_enable bidi fribidi) \
+ $(use_enable cairo) \
+ $(use_enable debug) \
+ $(use_enable jpeg) \
+ $(use_enable nls) \
+ $(use_enable png) \
+ $(use_enable cairo rsvg) \
+ $(use_enable truetype xft) \
+ $(use_enable xinerama) \
+ $(use_enable xpm) \
+ $(use_with iconv libiconv-prefix /usr) \
+ $(use_with nls libintl-prefix /usr) \
+ --enable-shape \
+ --enable-xrender \
+ --disable-rpath
+}
+
+src_install() {
+ dodir /etc
+ dodir /usr/bin
+ dodir /usr/share/man
+
+ default
+
+ make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
+
+ insinto "/usr/share/xsessions"
+ doins "${FILESDIR}"/jwm.desktop
+
+ dodoc README.md example.jwmrc ChangeLog
+}
+
+pkg_postinst() {
+ einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
+ einfo "or per-user by creating a configuration file in ~/.jwmrc"
+ einfo
+ einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
+}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2019-09-11 16:21 Michał Górny
0 siblings, 0 replies; 30+ messages in thread
From: Michał Górny @ 2019-09-11 16:21 UTC (permalink / raw
To: gentoo-commits
commit: 26405d66b709a2edf622f31a7d1abc674839c735
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 11 11:27:39 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Sep 11 16:21:15 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26405d66
x11-wm/jwm: Drop old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
x11-wm/jwm/Manifest | 3 --
x11-wm/jwm/jwm-2.3.4-r1.ebuild | 63 ----------------------------------
x11-wm/jwm/jwm-2.3.5.ebuild | 76 -----------------------------------------
x11-wm/jwm/jwm-2.3.6.ebuild | 77 ------------------------------------------
4 files changed, 219 deletions(-)
diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index ee509652595..3543abbfb9c 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -1,5 +1,2 @@
DIST jwm-2.3.2.tar.xz 325648 BLAKE2B 93654116b0dedff4ad03c7981a9978530a1989edf4766591f083c3b10fefb128acc85e93b888a7700cb59e0bd85e1e7f7e118a22327f79ddcc1d380887764028 SHA512 34b9d482815e8b269203e1f5bf02d3e13f3186153755c9e74094e4a8af376f35b8bef4553056e83c20ba0c532e6d2606633d71272e186fe45dfed9e4ea836a27
-DIST jwm-2.3.4.tar.xz 332140 BLAKE2B ad2ea9d094b6cded0891176c97900b8491c3d81f64b1df7617c8936d581c849c4515deb8795f3f10018f469c1a97617fa97ec50fb2088dc7ea221ed55af2de97 SHA512 db9f46ced4b1f8128673b551cd865b6c9b6c8d43f839cfe898168251e8326d402a510ce77144273488c1e65a96d66e16124e4b4749a5a96a9057c1eb20c2bee1
-DIST jwm-2.3.5.tar.xz 339792 BLAKE2B dcbaeac2e6842499509651155618821cf302b3e3ae1b013f3811c49e65ac83122e00aff33af4a366ea0c126f2a009a0baba0538e132f00efac306319b94e50c4 SHA512 cb45a5fb349e6c130b89996ba11a99059e95ccedc4ea82ad527676130833fd93297b64fad905a1f22908a4ae69cca544a6353c37160ed8df3e1089f40f9a0565
-DIST jwm-2.3.6.tar.xz 343644 BLAKE2B 44d6156b79957352b52f8f4000f12e655259f2125eeba183a087358b7537d3affd7125a50b0ff93efa9c8d2599d08e7cc3db6c26807ad587481ce689541aaad0 SHA512 ed3556bf2e28bfcf36b2b145e6c08e75c24e47b723b16ce072100d2773338d819c5465e7af2dc6b842e2e35f375ec3a0b85d9987e0a8acecdbe628dc09eabd11
DIST jwm-2.3.7.tar.xz 350332 BLAKE2B 479d853ae9b1dd2d1a39c9e823f39cd7671b477f6e9878bc6652072bce1ce364f8c392663dc1187a4a4970918c0f68cd506654f6dfe6c91cc5f1f2f275a2021b SHA512 dab0241518e52aa2e3e1ef3f67b6965ceb683bdb0224de7d3a653d76440606d70e86e35047eda40ea53a80aa227408be77739ad7c53d51f53026e3d113ab7efc
diff --git a/x11-wm/jwm/jwm-2.3.4-r1.ebuild b/x11-wm/jwm/jwm-2.3.4-r1.ebuild
deleted file mode 100644
index 1cc308d043e..00000000000
--- a/x11-wm/jwm/jwm-2.3.4-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="Very fast and lightweight still powerful window manager for X"
-HOMEPAGE="http://joewing.net/projects/jwm/"
-SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
-IUSE="bidi debug jpeg png truetype xinerama xpm"
-
-RDEPEND="xpm? ( x11-libs/libXpm )
- xinerama? ( x11-libs/libXinerama )
- x11-libs/libXext
- x11-libs/libXrender
- x11-libs/libXau
- x11-libs/libXdmcp
- truetype? ( x11-libs/libXft )
- png? ( media-libs/libpng:0= )
- jpeg? ( virtual/jpeg:0= )
- bidi? ( dev-libs/fribidi )
- dev-libs/expat"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
-
-src_configure() {
- econf \
- $(use_enable debug) \
- $(use_enable jpeg) \
- $(use_enable png) \
- $(use_enable truetype xft) \
- $(use_enable xinerama) \
- $(use_enable xpm) \
- $(use_enable bidi fribidi) \
- --enable-shape \
- --enable-xrender
-}
-
-src_install() {
- dodir /etc
- dodir /usr/bin
- dodir /usr/share/man
-
- default
-
- make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
-
- insinto "/usr/share/xsessions"
- doins "${FILESDIR}"/jwm.desktop
-
- dodoc README.md example.jwmrc ChangeLog
-}
-
-pkg_postinst() {
- einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
- einfo "or per-user by creating a configuration file in ~/.jwmrc"
- einfo
- einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
-}
diff --git a/x11-wm/jwm/jwm-2.3.5.ebuild b/x11-wm/jwm/jwm-2.3.5.ebuild
deleted file mode 100644
index 8607775ee27..00000000000
--- a/x11-wm/jwm/jwm-2.3.5.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils
-
-DESCRIPTION="Very fast and lightweight still powerful window manager for X"
-HOMEPAGE="http://joewing.net/projects/jwm/"
-SRC_URI="http://joewing.net/projects/${PN}/releases/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
-IUSE="bidi cairo debug iconv jpeg nls png truetype xinerama xpm"
-
-RDEPEND="dev-libs/expat
- x11-libs/libXau
- x11-libs/libXdmcp
- x11-libs/libXext
- x11-libs/libXmu
- x11-libs/libXrender
- bidi? ( dev-libs/fribidi )
- cairo? (
- x11-libs/cairo
- gnome-base/librsvg
- )
- iconv? ( virtual/libiconv )
- jpeg? ( virtual/jpeg:0= )
- nls? ( sys-devel/gettext
- virtual/libintl )
- png? ( media-libs/libpng:0= )
- truetype? ( x11-libs/libXft )
- xinerama? ( x11-libs/libXinerama )
- xpm? ( x11-libs/libXpm )"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
-
-src_configure() {
- econf \
- $(use_enable bidi fribidi) \
- $(use_enable cairo) \
- $(use_enable debug) \
- $(use_enable iconv) \
- $(use_enable jpeg) \
- $(use_enable nls) \
- $(use_enable png) \
- $(use_enable cairo rsvg) \
- $(use_enable truetype xft) \
- $(use_enable xinerama) \
- $(use_enable xpm) \
- --enable-shape \
- --enable-xrender \
- --disable-rpath
-}
-
-src_install() {
- dodir /etc
- dodir /usr/bin
- dodir /usr/share/man
-
- default
-
- make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
-
- insinto "/usr/share/xsessions"
- doins "${FILESDIR}"/jwm.desktop
-
- dodoc README.md example.jwmrc ChangeLog
-}
-
-pkg_postinst() {
- einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
- einfo "or per-user by creating a configuration file in ~/.jwmrc"
- einfo
- einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
-}
diff --git a/x11-wm/jwm/jwm-2.3.6.ebuild b/x11-wm/jwm/jwm-2.3.6.ebuild
deleted file mode 100644
index 44d5478bb9e..00000000000
--- a/x11-wm/jwm/jwm-2.3.6.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils
-
-DESCRIPTION="Very fast and lightweight still powerful window manager for X"
-HOMEPAGE="http://joewing.net/projects/jwm/"
-SRC_URI="http://joewing.net/projects/${PN}/releases/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
-IUSE="bidi cairo debug iconv jpeg nls png truetype xinerama xpm"
-
-RDEPEND="dev-libs/expat
- x11-libs/libXau
- x11-libs/libXdmcp
- x11-libs/libXext
- x11-libs/libXmu
- x11-libs/libXrender
- bidi? ( dev-libs/fribidi )
- cairo? (
- x11-libs/cairo
- gnome-base/librsvg
- )
- iconv? ( virtual/libiconv )
- jpeg? ( virtual/jpeg:0= )
- nls? ( sys-devel/gettext
- virtual/libintl )
- png? ( media-libs/libpng:0= )
- truetype? ( x11-libs/libXft )
- xinerama? ( x11-libs/libXinerama )
- xpm? ( x11-libs/libXpm )"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
-
-src_configure() {
- econf \
- $(use_enable bidi fribidi) \
- $(use_enable cairo) \
- $(use_enable debug) \
- $(use_enable jpeg) \
- $(use_enable nls) \
- $(use_enable png) \
- $(use_enable cairo rsvg) \
- $(use_enable truetype xft) \
- $(use_enable xinerama) \
- $(use_enable xpm) \
- $(use_with iconv libiconv-prefix /usr) \
- $(use_with nls libintl-prefix /usr) \
- --enable-shape \
- --enable-xrender \
- --disable-rpath
-}
-
-src_install() {
- dodir /etc
- dodir /usr/bin
- dodir /usr/share/man
-
- default
-
- make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
-
- insinto "/usr/share/xsessions"
- doins "${FILESDIR}"/jwm.desktop
-
- dodoc README.md example.jwmrc ChangeLog
-}
-
-pkg_postinst() {
- einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
- einfo "or per-user by creating a configuration file in ~/.jwmrc"
- einfo
- einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
-}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2019-12-16 8:48 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2019-12-16 8:48 UTC (permalink / raw
To: gentoo-commits
commit: 1e4450760711c08cb3620c894f0a8cb699757c02
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 16 08:23:40 2019 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Mon Dec 16 08:48:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e445076
x11-wm/jwm: add self to metadata
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Sam Jorna <wraeth <AT> gentoo.org>
x11-wm/jwm/metadata.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/x11-wm/jwm/metadata.xml b/x11-wm/jwm/metadata.xml
index 194d92bfe46..1f5b8e82302 100644
--- a/x11-wm/jwm/metadata.xml
+++ b/x11-wm/jwm/metadata.xml
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>wraeth@gentoo.org</email>
+ <name>Sam Jorna</name>
+ </maintainer>
<upstream>
<remote-id type="github">joewing/jwm</remote-id>
<changelog>http://joewing.net/projects/jwm/snapshots/ChangeLog</changelog>
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2021-03-29 7:56 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2021-03-29 7:56 UTC (permalink / raw
To: gentoo-commits
commit: 7868d9a001888ec1ebe2ace23c40c15dabbe5e09
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 28 01:04:17 2021 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Mon Mar 29 07:56:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7868d9a0
x11-wm/jwm: Fix license, fix copyright per GLEP76
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Sam Jorna <wraeth <AT> gentoo.org>
x11-wm/jwm/jwm-2.3.2.ebuild | 4 ++--
x11-wm/jwm/jwm-2.3.7.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 7f6d666ef0c..122eb6cae1a 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -8,7 +8,7 @@ DESCRIPTION="Very fast and lightweight still powerful window manager for X"
HOMEPAGE="http://joewing.net/projects/jwm/"
SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.xz"
-LICENSE="GPL-2"
+LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~hppa ppc x86"
IUSE="bidi debug jpeg png truetype xinerama xpm"
diff --git a/x11-wm/jwm/jwm-2.3.7.ebuild b/x11-wm/jwm/jwm-2.3.7.ebuild
index ca8612d564d..6794ed14102 100644
--- a/x11-wm/jwm/jwm-2.3.7.ebuild
+++ b/x11-wm/jwm/jwm-2.3.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -8,7 +8,7 @@ DESCRIPTION="Very fast and lightweight still powerful window manager for X"
HOMEPAGE="http://joewing.net/projects/jwm/"
SRC_URI="http://joewing.net/projects/${PN}/releases/${P}.tar.xz"
-LICENSE="GPL-2"
+LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
IUSE="bidi cairo debug iconv jpeg nls png truetype xinerama xpm"
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2021-04-11 13:57 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2021-04-11 13:57 UTC (permalink / raw
To: gentoo-commits
commit: 0b643bcaa5ea1ef29d82f42bc63e74983e46dd17
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 11 13:56:27 2021 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Sun Apr 11 13:56:27 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b643bca
x11-wm/jwm-2.3.7: amd64 stable
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sam Jorna <wraeth <AT> gentoo.org>
x11-wm/jwm/jwm-2.3.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-wm/jwm/jwm-2.3.7.ebuild b/x11-wm/jwm/jwm-2.3.7.ebuild
index 6ad915f71e6..d07ef653456 100644
--- a/x11-wm/jwm/jwm-2.3.7.ebuild
+++ b/x11-wm/jwm/jwm-2.3.7.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://joewing.net/projects/${PN}/releases/${P}.tar.xz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc x86"
+KEYWORDS="amd64 ~hppa ~ppc x86"
IUSE="bidi cairo debug iconv jpeg nls png truetype xinerama xpm"
RDEPEND="dev-libs/expat
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2021-04-11 13:57 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2021-04-11 13:57 UTC (permalink / raw
To: gentoo-commits
commit: 6913c198c016e4f610452d49032d0e0fac529180
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 11 13:55:42 2021 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Sun Apr 11 13:55:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6913c198
x11-wm/jwm-2.3.7: x86 stable
Gentoo-bug: https://bugs.gentoo.org/782067
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sam Jorna <wraeth <AT> gentoo.org>
x11-wm/jwm/jwm-2.3.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-wm/jwm/jwm-2.3.7.ebuild b/x11-wm/jwm/jwm-2.3.7.ebuild
index 6794ed14102..6ad915f71e6 100644
--- a/x11-wm/jwm/jwm-2.3.7.ebuild
+++ b/x11-wm/jwm/jwm-2.3.7.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://joewing.net/projects/${PN}/releases/${P}.tar.xz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+KEYWORDS="~amd64 ~hppa ~ppc x86"
IUSE="bidi cairo debug iconv jpeg nls png truetype xinerama xpm"
RDEPEND="dev-libs/expat
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2021-04-16 11:23 Sam James
0 siblings, 0 replies; 30+ messages in thread
From: Sam James @ 2021-04-16 11:23 UTC (permalink / raw
To: gentoo-commits
commit: 7b4af77a4da006f75a8b2eabb02fbdfb1bf7c281
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 15 10:58:25 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 16 11:23:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b4af77a
x11-wm/jwm: eutils->wrapper
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-wm/jwm/jwm-2.3.2.ebuild | 3 ++-
x11-wm/jwm/jwm-2.3.7.ebuild | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
index 122eb6cae1a..f5523a67a31 100644
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ b/x11-wm/jwm/jwm-2.3.2.ebuild
@@ -2,7 +2,8 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=5
-inherit eutils
+
+inherit wrapper
DESCRIPTION="Very fast and lightweight still powerful window manager for X"
HOMEPAGE="http://joewing.net/projects/jwm/"
diff --git a/x11-wm/jwm/jwm-2.3.7.ebuild b/x11-wm/jwm/jwm-2.3.7.ebuild
index d07ef653456..de3b5aa2c7f 100644
--- a/x11-wm/jwm/jwm-2.3.7.ebuild
+++ b/x11-wm/jwm/jwm-2.3.7.ebuild
@@ -2,7 +2,8 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit eutils
+
+inherit wrapper
DESCRIPTION="Very fast and lightweight still powerful window manager for X"
HOMEPAGE="http://joewing.net/projects/jwm/"
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2021-04-17 2:05 Sam Jorna
0 siblings, 0 replies; 30+ messages in thread
From: Sam Jorna @ 2021-04-17 2:05 UTC (permalink / raw
To: gentoo-commits
commit: 7c806b3272e4759a3f7af67b2a5597ceb33db615
Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 17 02:04:38 2021 +0000
Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Sat Apr 17 02:04:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c806b32
x11-wm/jwm: clean old
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sam Jorna <wraeth <AT> gentoo.org>
x11-wm/jwm/Manifest | 1 -
x11-wm/jwm/jwm-2.3.2.ebuild | 61 ---------------------------------------------
2 files changed, 62 deletions(-)
diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index 3543abbfb9c..c96d0d49b67 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -1,2 +1 @@
-DIST jwm-2.3.2.tar.xz 325648 BLAKE2B 93654116b0dedff4ad03c7981a9978530a1989edf4766591f083c3b10fefb128acc85e93b888a7700cb59e0bd85e1e7f7e118a22327f79ddcc1d380887764028 SHA512 34b9d482815e8b269203e1f5bf02d3e13f3186153755c9e74094e4a8af376f35b8bef4553056e83c20ba0c532e6d2606633d71272e186fe45dfed9e4ea836a27
DIST jwm-2.3.7.tar.xz 350332 BLAKE2B 479d853ae9b1dd2d1a39c9e823f39cd7671b477f6e9878bc6652072bce1ce364f8c392663dc1187a4a4970918c0f68cd506654f6dfe6c91cc5f1f2f275a2021b SHA512 dab0241518e52aa2e3e1ef3f67b6965ceb683bdb0224de7d3a653d76440606d70e86e35047eda40ea53a80aa227408be77739ad7c53d51f53026e3d113ab7efc
diff --git a/x11-wm/jwm/jwm-2.3.2.ebuild b/x11-wm/jwm/jwm-2.3.2.ebuild
deleted file mode 100644
index f5523a67a31..00000000000
--- a/x11-wm/jwm/jwm-2.3.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit wrapper
-
-DESCRIPTION="Very fast and lightweight still powerful window manager for X"
-HOMEPAGE="http://joewing.net/projects/jwm/"
-SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc x86"
-IUSE="bidi debug jpeg png truetype xinerama xpm"
-
-RDEPEND="xpm? ( x11-libs/libXpm )
- xinerama? ( x11-libs/libXinerama )
- x11-libs/libXext
- x11-libs/libXrender
- x11-libs/libXau
- x11-libs/libXdmcp
- truetype? ( x11-libs/libXft )
- png? ( media-libs/libpng:0= )
- jpeg? ( virtual/jpeg:0= )
- bidi? ( dev-libs/fribidi )
- dev-libs/expat"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
-
-src_configure() {
- econf \
- $(use_enable debug) \
- $(use_enable jpeg) \
- $(use_enable png) \
- $(use_enable truetype xft) \
- $(use_enable xinerama) \
- $(use_enable xpm) \
- $(use_enable bidi fribidi) \
- --enable-shape \
- --enable-xrender
-}
-
-src_install() {
- dodir /etc
- dodir /usr/bin
- dodir /usr/share/man
-
- default
-
- make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
-
- dodoc README.md example.jwmrc ChangeLog
-}
-
-pkg_postinst() {
- einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
- einfo "or per-user by creating a configuration file in ~/.jwmrc"
- einfo
- einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
-}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2022-08-10 5:03 Sam James
0 siblings, 0 replies; 30+ messages in thread
From: Sam James @ 2022-08-10 5:03 UTC (permalink / raw
To: gentoo-commits
commit: f44ca4313aa9d9fdd6ef69832800acfd11b646cc
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 10 05:02:59 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 10 05:02:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f44ca431
x11-wm/jwm: add pkgconfig BDEPEND
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-wm/jwm/jwm-2.4.2.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/x11-wm/jwm/jwm-2.4.2.ebuild b/x11-wm/jwm/jwm-2.4.2.ebuild
index d98f6fab191a..5c8dc48adc0f 100644
--- a/x11-wm/jwm/jwm-2.4.2.ebuild
+++ b/x11-wm/jwm/jwm-2.4.2.ebuild
@@ -35,6 +35,7 @@ RDEPEND="dev-libs/expat
xpm? ( x11-libs/libXpm )"
DEPEND="${RDEPEND}
x11-base/xorg-proto"
+BDEPEND="virtual/pkgconfig"
src_configure() {
econf \
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2022-08-10 5:03 Sam James
0 siblings, 0 replies; 30+ messages in thread
From: Sam James @ 2022-08-10 5:03 UTC (permalink / raw
To: gentoo-commits
commit: 1900c6b08321076d97823eac73a54380e2aa810f
Author: Rafael Kitover <rkitover <AT> gmail <DOT> com>
AuthorDate: Wed Aug 10 04:56:54 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 10 05:01:48 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1900c6b0
x11-wm/jwm: add 2.4.2
Switch to EAPI 8.
Set SRC_URI to github release.
Add pango USE flag for new version and add description for it to
metadata.xml.
Replace deprecated jpeg dep for new version.
Update doc list.
Signed-off-by: Rafael Kitover <rkitover <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/26557
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-wm/jwm/Manifest | 1 +
x11-wm/jwm/jwm-2.4.2.ebuild | 78 +++++++++++++++++++++++++++++++++++++++++++++
x11-wm/jwm/metadata.xml | 5 +++
3 files changed, 84 insertions(+)
diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index c96d0d49b67b..4d4a6142ab5d 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -1 +1,2 @@
DIST jwm-2.3.7.tar.xz 350332 BLAKE2B 479d853ae9b1dd2d1a39c9e823f39cd7671b477f6e9878bc6652072bce1ce364f8c392663dc1187a4a4970918c0f68cd506654f6dfe6c91cc5f1f2f275a2021b SHA512 dab0241518e52aa2e3e1ef3f67b6965ceb683bdb0224de7d3a653d76440606d70e86e35047eda40ea53a80aa227408be77739ad7c53d51f53026e3d113ab7efc
+DIST jwm-2.4.2.tar.xz 316000 BLAKE2B 7a0a1c5f60cb3554c999ce3d00d94af4d58ac4bdfcbaaa13a7b675273b4c5d0058c7c85bec950fa91d33a46a89f0b83faf2ab2cda0430a741884e2fdfd8116a7 SHA512 2669c3e2ab2d9a5539d02559108a2bc601bb2209de03dc15057a65c14b5e1268cc58009f4102c4d90302c0705ada5578997a3644c736a46a7e8cf13766cc92fe
diff --git a/x11-wm/jwm/jwm-2.4.2.ebuild b/x11-wm/jwm/jwm-2.4.2.ebuild
new file mode 100644
index 000000000000..d98f6fab191a
--- /dev/null
+++ b/x11-wm/jwm/jwm-2.4.2.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit wrapper
+
+DESCRIPTION="Very fast and lightweight still powerful window manager for X"
+HOMEPAGE="http://joewing.net/projects/jwm/"
+SRC_URI="https://github.com/joewing/${PN}/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+IUSE="svg debug iconv jpeg nls png pango truetype xinerama xpm"
+
+RDEPEND="dev-libs/expat
+ x11-libs/libXau
+ x11-libs/libXdmcp
+ x11-libs/libXext
+ x11-libs/libXmu
+ x11-libs/libXrender
+ svg? (
+ x11-libs/cairo
+ gnome-base/librsvg
+ )
+ iconv? ( virtual/libiconv )
+ jpeg? ( media-libs/libjpeg-turbo )
+ nls? ( sys-devel/gettext
+ virtual/libintl )
+ pango? ( x11-libs/pango )
+ png? ( media-libs/libpng:0= )
+ truetype? ( x11-libs/libXft )
+ xinerama? ( x11-libs/libXinerama )
+ xpm? ( x11-libs/libXpm )"
+DEPEND="${RDEPEND}
+ x11-base/xorg-proto"
+
+src_configure() {
+ econf \
+ $(use_enable svg cairo) \
+ $(use_enable svg rsvg) \
+ $(use_enable debug) \
+ $(use_enable jpeg) \
+ $(use_enable nls) \
+ $(use_enable pango) \
+ $(use_enable png) \
+ $(use_enable truetype xft) \
+ $(use_enable xinerama) \
+ $(use_enable xpm) \
+ $(use_with iconv libiconv-prefix /usr) \
+ $(use_with nls libintl-prefix /usr) \
+ --enable-shape \
+ --enable-xrender \
+ --disable-rpath
+}
+
+src_install() {
+ dodir /etc
+ dodir /usr/bin
+ dodir /usr/share/man
+
+ default
+
+ make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
+
+ insinto "/usr/share/xsessions"
+ doins "${FILESDIR}"/jwm.desktop
+
+ dodoc README.md README.upgrading example.jwmrc CONTRIBUTING.md
+}
+
+pkg_postinst() {
+ einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
+ einfo "or per-user by creating a configuration file in ~/.jwmrc"
+ einfo
+ einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
+}
diff --git a/x11-wm/jwm/metadata.xml b/x11-wm/jwm/metadata.xml
index 4eaa4897b0b5..2af5f3016b49 100644
--- a/x11-wm/jwm/metadata.xml
+++ b/x11-wm/jwm/metadata.xml
@@ -19,4 +19,9 @@
such as Puppy Linux and Damn Small Linux, and it is available as a separate
package in many other distributions.
</longdescription>
+ <use>
+ <flag name="pango">
+ Bidirectional text layout support with pango using xft backend.
+ </flag>
+ </use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2022-09-30 2:20 Sam James
0 siblings, 0 replies; 30+ messages in thread
From: Sam James @ 2022-09-30 2:20 UTC (permalink / raw
To: gentoo-commits
commit: 4529a0ea775bdc22bb410f7a8ac44e391b264f8d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 30 02:20:33 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 30 02:20:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4529a0ea
x11-wm/jwm: Stabilize 2.4.2 x86, #867157
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-wm/jwm/jwm-2.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-wm/jwm/jwm-2.4.2.ebuild b/x11-wm/jwm/jwm-2.4.2.ebuild
index 5c8dc48adc0f..59e806a2727f 100644
--- a/x11-wm/jwm/jwm-2.4.2.ebuild
+++ b/x11-wm/jwm/jwm-2.4.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/joewing/${PN}/releases/download/v${PV}/${P}.tar.xz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+KEYWORDS="~amd64 ~hppa ~ppc x86"
IUSE="svg debug iconv jpeg nls png pango truetype xinerama xpm"
RDEPEND="dev-libs/expat
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2022-09-30 9:26 Andreas Sturmlechner
0 siblings, 0 replies; 30+ messages in thread
From: Andreas Sturmlechner @ 2022-09-30 9:26 UTC (permalink / raw
To: gentoo-commits
commit: a32f8ed09be281d6737b3d6dd50629ff781f662f
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 30 07:09:03 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Sep 30 09:17:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a32f8ed0
x11-wm/jwm: drop 2.3.7
Closes: https://bugs.gentoo.org/867157
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
x11-wm/jwm/Manifest | 1 -
x11-wm/jwm/jwm-2.3.7.ebuild | 78 ---------------------------------------------
2 files changed, 79 deletions(-)
diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index 4d4a6142ab5d..584cd4065993 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -1,2 +1 @@
-DIST jwm-2.3.7.tar.xz 350332 BLAKE2B 479d853ae9b1dd2d1a39c9e823f39cd7671b477f6e9878bc6652072bce1ce364f8c392663dc1187a4a4970918c0f68cd506654f6dfe6c91cc5f1f2f275a2021b SHA512 dab0241518e52aa2e3e1ef3f67b6965ceb683bdb0224de7d3a653d76440606d70e86e35047eda40ea53a80aa227408be77739ad7c53d51f53026e3d113ab7efc
DIST jwm-2.4.2.tar.xz 316000 BLAKE2B 7a0a1c5f60cb3554c999ce3d00d94af4d58ac4bdfcbaaa13a7b675273b4c5d0058c7c85bec950fa91d33a46a89f0b83faf2ab2cda0430a741884e2fdfd8116a7 SHA512 2669c3e2ab2d9a5539d02559108a2bc601bb2209de03dc15057a65c14b5e1268cc58009f4102c4d90302c0705ada5578997a3644c736a46a7e8cf13766cc92fe
diff --git a/x11-wm/jwm/jwm-2.3.7.ebuild b/x11-wm/jwm/jwm-2.3.7.ebuild
deleted file mode 100644
index de3b5aa2c7f5..000000000000
--- a/x11-wm/jwm/jwm-2.3.7.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit wrapper
-
-DESCRIPTION="Very fast and lightweight still powerful window manager for X"
-HOMEPAGE="http://joewing.net/projects/jwm/"
-SRC_URI="http://joewing.net/projects/${PN}/releases/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc x86"
-IUSE="bidi cairo debug iconv jpeg nls png truetype xinerama xpm"
-
-RDEPEND="dev-libs/expat
- x11-libs/libXau
- x11-libs/libXdmcp
- x11-libs/libXext
- x11-libs/libXmu
- x11-libs/libXrender
- bidi? ( dev-libs/fribidi )
- cairo? (
- x11-libs/cairo
- gnome-base/librsvg
- )
- iconv? ( virtual/libiconv )
- jpeg? ( virtual/jpeg:0= )
- nls? ( sys-devel/gettext
- virtual/libintl )
- png? ( media-libs/libpng:0= )
- truetype? ( x11-libs/libXft )
- xinerama? ( x11-libs/libXinerama )
- xpm? ( x11-libs/libXpm )"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
-
-src_configure() {
- econf \
- $(use_enable bidi fribidi) \
- $(use_enable cairo) \
- $(use_enable debug) \
- $(use_enable jpeg) \
- $(use_enable nls) \
- $(use_enable png) \
- $(use_enable cairo rsvg) \
- $(use_enable truetype xft) \
- $(use_enable xinerama) \
- $(use_enable xpm) \
- $(use_with iconv libiconv-prefix /usr) \
- $(use_with nls libintl-prefix /usr) \
- --enable-shape \
- --enable-xrender \
- --disable-rpath
-}
-
-src_install() {
- dodir /etc
- dodir /usr/bin
- dodir /usr/share/man
-
- default
-
- make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
-
- insinto "/usr/share/xsessions"
- doins "${FILESDIR}"/jwm.desktop
-
- dodoc README.md example.jwmrc ChangeLog
-}
-
-pkg_postinst() {
- einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
- einfo "or per-user by creating a configuration file in ~/.jwmrc"
- einfo
- einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
-}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2024-07-21 15:12 Conrad Kostecki
0 siblings, 0 replies; 30+ messages in thread
From: Conrad Kostecki @ 2024-07-21 15:12 UTC (permalink / raw
To: gentoo-commits
commit: fe2a9c2434e00ae02b3a1134683871e830c4347b
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Jul 20 11:08:04 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 15:05:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe2a9c24
x11-wm/jwm: use https
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-wm/jwm/jwm-2.4.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-wm/jwm/jwm-2.4.2.ebuild b/x11-wm/jwm/jwm-2.4.2.ebuild
index 0e9c3f44f9c4..1a89b8050f20 100644
--- a/x11-wm/jwm/jwm-2.4.2.ebuild
+++ b/x11-wm/jwm/jwm-2.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -6,7 +6,7 @@ EAPI=8
inherit wrapper
DESCRIPTION="Very fast and lightweight still powerful window manager for X"
-HOMEPAGE="http://joewing.net/projects/jwm/"
+HOMEPAGE="https://joewing.net/projects/jwm/"
SRC_URI="https://github.com/joewing/${PN}/releases/download/v${PV}/${P}.tar.xz"
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2024-07-21 15:12 Conrad Kostecki
0 siblings, 0 replies; 30+ messages in thread
From: Conrad Kostecki @ 2024-07-21 15:12 UTC (permalink / raw
To: gentoo-commits
commit: 88292ec69ea19e136adb91fcaeea5aebe4a83fd2
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Jul 20 11:07:47 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 15:05:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88292ec6
x11-wm/jwm: add 2.4.3
Closes: https://bugs.gentoo.org/912594
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-wm/jwm/Manifest | 1 +
x11-wm/jwm/jwm-2.4.3.ebuild | 82 +++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 83 insertions(+)
diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index 584cd4065993..3cfc7e956fa9 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -1 +1,2 @@
DIST jwm-2.4.2.tar.xz 316000 BLAKE2B 7a0a1c5f60cb3554c999ce3d00d94af4d58ac4bdfcbaaa13a7b675273b4c5d0058c7c85bec950fa91d33a46a89f0b83faf2ab2cda0430a741884e2fdfd8116a7 SHA512 2669c3e2ab2d9a5539d02559108a2bc601bb2209de03dc15057a65c14b5e1268cc58009f4102c4d90302c0705ada5578997a3644c736a46a7e8cf13766cc92fe
+DIST jwm-2.4.3.tar.xz 317192 BLAKE2B d0b0ff1088ab3390a90c054162ea2c2fe782b61f28b3fdb28464ace362143fdc94e25ec82f7f4178b86a26c9315cdfcf9a81bff2e76bb5e3d62f88968a4ee80b SHA512 35b8a6da9614f11881013aa77c36ee88ce9a213f056e797231b772132beb841d54094809b6a476383999bddeccf61451f72cd166309dd79c223b634cf5d1e69e
diff --git a/x11-wm/jwm/jwm-2.4.3.ebuild b/x11-wm/jwm/jwm-2.4.3.ebuild
new file mode 100644
index 000000000000..08db4c809545
--- /dev/null
+++ b/x11-wm/jwm/jwm-2.4.3.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit wrapper
+
+DESCRIPTION="Very fast and lightweight still powerful window manager for X"
+HOMEPAGE="https://joewing.net/projects/jwm/"
+SRC_URI="https://github.com/joewing/${PN}/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+IUSE="svg debug iconv jpeg nls png pango truetype xinerama xpm"
+
+RDEPEND="dev-libs/expat
+ x11-libs/libXau
+ x11-libs/libXdmcp
+ x11-libs/libXext
+ x11-libs/libXmu
+ x11-libs/libXrender
+ svg? (
+ x11-libs/cairo
+ gnome-base/librsvg
+ )
+ iconv? ( virtual/libiconv )
+ jpeg? ( media-libs/libjpeg-turbo )
+ nls? ( sys-devel/gettext
+ virtual/libintl )
+ pango? ( x11-libs/pango )
+ png? ( media-libs/libpng:0= )
+ truetype? ( x11-libs/libXft )
+ xinerama? ( x11-libs/libXinerama )
+ xpm? ( x11-libs/libXpm )"
+DEPEND="${RDEPEND}
+ x11-base/xorg-proto"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable svg cairo)
+ $(use_enable svg rsvg)
+ $(use_enable debug)
+ $(use_enable jpeg)
+ $(use_enable nls)
+ $(use_enable pango)
+ $(use_enable png)
+ $(use_enable truetype xft)
+ $(use_enable xinerama)
+ $(use_enable xpm)
+ $(use_with iconv libiconv-prefix /usr)
+ $(use_with nls libintl-prefix /usr)
+ --enable-shape
+ --enable-xrender
+ --disable-rpath
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ dodir /etc
+ dodir /usr/bin
+ dodir /usr/share/man
+
+ default
+
+ make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
+
+ insinto "/usr/share/xsessions"
+ doins "${FILESDIR}"/jwm.desktop
+
+ dodoc README.md README.upgrading example.jwmrc CONTRIBUTING.md
+}
+
+pkg_postinst() {
+ einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
+ einfo "or per-user by creating a configuration file in ~/.jwmrc"
+ einfo
+ einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
+}
^ permalink raw reply related [flat|nested] 30+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
@ 2024-07-21 15:12 Conrad Kostecki
0 siblings, 0 replies; 30+ messages in thread
From: Conrad Kostecki @ 2024-07-21 15:12 UTC (permalink / raw
To: gentoo-commits
commit: 87305f2c5a0905623320c7a1247f1a1fa645e3b4
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Jul 20 11:11:30 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 15:05:48 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87305f2c
x11-wm/jwm: update changelog link
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/37629
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-wm/jwm/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-wm/jwm/metadata.xml b/x11-wm/jwm/metadata.xml
index 7d709d102326..745eaf8d5e4f 100644
--- a/x11-wm/jwm/metadata.xml
+++ b/x11-wm/jwm/metadata.xml
@@ -4,7 +4,7 @@
<!-- maintainer-needed -->
<upstream>
<remote-id type="github">joewing/jwm</remote-id>
- <changelog>http://joewing.net/projects/jwm/snapshots/ChangeLog</changelog>
+ <changelog>https://github.com/joewing/jwm/releases</changelog>
<bugs-to>https://github.com/joewing/jwm/issues</bugs-to>
</upstream>
<longdescription>
^ permalink raw reply related [flat|nested] 30+ messages in thread
end of thread, other threads:[~2024-07-21 15:12 UTC | newest]
Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-11 13:57 [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/ Sam Jorna
-- strict thread matches above, loose matches on Subject: below --
2024-07-21 15:12 Conrad Kostecki
2024-07-21 15:12 Conrad Kostecki
2024-07-21 15:12 Conrad Kostecki
2022-09-30 9:26 Andreas Sturmlechner
2022-09-30 2:20 Sam James
2022-08-10 5:03 Sam James
2022-08-10 5:03 Sam James
2021-04-17 2:05 Sam Jorna
2021-04-16 11:23 Sam James
2021-04-11 13:57 Sam Jorna
2021-03-29 7:56 Sam Jorna
2019-12-16 8:48 Sam Jorna
2019-09-11 16:21 Michał Górny
2018-04-11 3:21 Sam Jorna
2016-11-08 21:30 Sam Jorna
2016-05-16 9:07 Sam Jorna
2016-05-16 6:58 Sam Jorna
2016-03-16 0:39 Sam Jorna
2016-03-14 23:37 Sam Jorna
2016-02-15 5:07 Jeroen Roovers
2016-01-17 17:14 Agostino Sarubbo
2016-01-15 9:03 Agostino Sarubbo
2016-01-10 8:21 Amy Winston
2015-10-12 11:38 Amy Winston
2015-10-11 7:57 Jeroen Roovers
2015-10-11 7:57 Jeroen Roovers
2015-10-11 7:57 Jeroen Roovers
2015-10-10 13:16 Amy Winston
2015-10-09 14:45 Ian Delaney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox