public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2017-01-21 23:16 Andreas Hüttel
  0 siblings, 0 replies; 13+ messages in thread
From: Andreas Hüttel @ 2017-01-21 23:16 UTC (permalink / raw
  To: gentoo-commits

commit:     8b853a018d4bb6434176a2d55ee6ac991fb7aff7
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 21 23:16:20 2017 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Jan 21 23:16:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b853a01

app-office/auto-multiple-choice: Add missing runtime dependency

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-office/auto-multiple-choice/auto-multiple-choice-1.3.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0.ebuild b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0.ebuild
index bbb3615..a4afc30 100644
--- a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0.ebuild
+++ b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0.ebuild
@@ -28,6 +28,7 @@ DEPEND="${CDEPEND}
 "
 RDEPEND="${CDEPEND}
 	dev-lang/perl:=
+	dev-perl/Glib-Object-Introspection
 	dev-perl/gtk2-perl
 	dev-perl/Gtk2-Notify
 	media-gfx/imagemagick


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2017-04-23 20:35 Andreas Hüttel
  0 siblings, 0 replies; 13+ messages in thread
From: Andreas Hüttel @ 2017-04-23 20:35 UTC (permalink / raw
  To: gentoo-commits

commit:     6382ed6bba4dc340c116977bb2a9d5bc467a72e2
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 23 20:35:33 2017 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 20:35:52 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6382ed6b

app-office/auto-multiple-choice: Revbump for bug 606744. Needs testing, no keywords.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 .../auto-multiple-choice-1.3.0-r1.ebuild           | 94 ++++++++++++++++++++++
 1 file changed, 94 insertions(+)

diff --git a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
new file mode 100644
index 00000000000..5660b1edcba
--- /dev/null
+++ b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs perl-functions latex-package
+
+DESCRIPTION="Create and manage multiple choice questionnaries, including automated marking"
+HOMEPAGE="http://home.gna.org/auto-qcm/"
+SRC_URI="http://download.gna.org/auto-qcm/${PN}_${PV}_sources.tar.gz"
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+LANGS="ar es fr ja"
+# we deliberately always install de and en, since this way we dont get a problem
+# with globs and empty directories...
+#
+for lala in ${LANGS}; do
+	IUSE="${IUSE} l10n_${lala}"
+done
+
+CDEPEND="
+	app-text/texlive[dvi2tty,extra,graphics,png,pstricks,science,truetype,xml,X,luatex,xetex,humanities,omega,publishers]
+	app-text/poppler:=
+	dev-perl/XML-LibXML
+	media-libs/netpbm
+	media-libs/opencv
+	l10n_fr? ( app-text/texlive[l10n_fr] )
+	l10n_ja? ( app-text/texlive[l10n_ja] )
+"
+DEPEND="${CDEPEND}
+	app-text/dblatex
+	app-text/docbook-xml-simple-dtd:*
+	app-text/docbook-xsl-stylesheets
+"
+RDEPEND="${CDEPEND}
+	app-text/pdftk
+	dev-lang/perl:=
+	dev-perl/Glib-Object-Introspection
+	dev-perl/Gtk2
+	dev-perl/Gtk2-Notify
+	media-gfx/imagemagick
+	dev-perl/XML-Writer
+	dev-perl/Archive-Zip
+	dev-perl/DBI
+	dev-perl/Text-CSV
+	dev-perl/DBD-SQLite
+	dev-perl/Net-CUPS
+	dev-perl/Email-Address
+	dev-perl/Email-MIME
+	dev-perl/Email-Sender
+"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.3.0-desktop.patch"
+	"${FILESDIR}/${PN}-1.3.0-conf.patch"
+)
+
+src_prepare() {
+	default
+
+	local la
+	for la in ${L10N} ; do
+		if ! use l10n_${la} ; then
+			# remove languages that we dont want to install
+			rm -vf "I18N/lang/${la}.po"
+			rm -vf "doc/auto-multiple-choice.${la}.in.xml" "doc/doc-xhtml-site.${la}.xsl.in"
+			rm -rvf "doc/html/auto-multiple-choice.${la}" "doc/modeles/${la}"
+		fi
+	done
+}
+
+src_compile() {
+	perl_set_version
+	export VENDOR_LIB PVR
+	export TEXINPUTS="/usr/share/dblatex/latex/style:/usr/share/dblatex/latex/misc:/usr/share/dblatex/latex/graphics:"
+
+	export MAKEOPTS="-j1"
+	# when doing a parallel build, the package is acting decidedly odd
+	# e.g., the build seems to succeed while actually stuff fails
+	# and subsequent error messages do not have any relation to the real problem
+	# So let's keep this also for easier debugging
+
+	emake \
+			GCC_NETPBM="-I/usr/include/netpbm/ -lnetpbm" \
+			GCC="$(tc-getCC)" \
+			GCC_PP="$(tc-getCXX)"
+}
+
+src_install() {
+	default
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2017-04-23 21:02 Andreas Hüttel
  0 siblings, 0 replies; 13+ messages in thread
From: Andreas Hüttel @ 2017-04-23 21:02 UTC (permalink / raw
  To: gentoo-commits

commit:     aceb136163c6ec8874fc0bd62ca0e45e2cc7eba9
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 23 21:02:21 2017 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 21:02:29 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aceb1361

app-office/auto-multiple-choice: Fix bugs and restore keywords

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 .../auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild      | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
index 5660b1edcba..925afe07ad3 100644
--- a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
+++ b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://home.gna.org/auto-qcm/"
 SRC_URI="http://download.gna.org/auto-qcm/${PN}_${PV}_sources.tar.gz"
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 LANGS="ar es fr ja"
@@ -62,12 +62,13 @@ src_prepare() {
 	default
 
 	local la
-	for la in ${L10N} ; do
+	for la in ${LANGS} ; do
 		if ! use l10n_${la} ; then
-			# remove languages that we dont want to install
+			# remove languages that we dont want to install. no error on nonexisting files.
 			rm -vf "I18N/lang/${la}.po"
 			rm -vf "doc/auto-multiple-choice.${la}.in.xml" "doc/doc-xhtml-site.${la}.xsl.in"
 			rm -rvf "doc/html/auto-multiple-choice.${la}" "doc/modeles/${la}"
+			sed -e "s: doc/doc-xhtml-site\\.${la}\\.xsl: :g" -i Makefile || die
 		fi
 	done
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2017-07-07 11:40 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2017-07-07 11:40 UTC (permalink / raw
  To: gentoo-commits

commit:     40b1598bd683ecd1a19457801163f04145d6471f
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  7 11:40:35 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Jul  7 11:40:35 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40b1598b

app-office/auto-multiple-choice: Remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../auto-multiple-choice-1.3.0.ebuild              | 69 ----------------------
 1 file changed, 69 deletions(-)

diff --git a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0.ebuild b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0.ebuild
deleted file mode 100644
index 6c370c74d8c..00000000000
--- a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs perl-functions latex-package
-
-DESCRIPTION="Create and manage multiple choice questionnaries, including automated marking"
-HOMEPAGE="http://home.gna.org/auto-qcm/"
-SRC_URI="http://download.gna.org/auto-qcm/${PN}_${PV}_sources.tar.gz"
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-CDEPEND="
-	app-text/texlive[doc,dvi2tty,dvipdfm,extra,graphics,png,pstricks,science,truetype,xml,X,luatex,xetex,humanities,omega,publishers,l10n_fr]
-	app-text/poppler:=
-	dev-perl/XML-LibXML
-	media-libs/netpbm
-	media-libs/opencv
-"
-DEPEND="${CDEPEND}
-	app-text/dblatex
-	app-text/docbook-xml-simple-dtd:*
-	app-text/docbook-xsl-stylesheets
-"
-RDEPEND="${CDEPEND}
-	dev-lang/perl:=
-	dev-perl/Glib-Object-Introspection
-	dev-perl/Gtk2
-	dev-perl/Gtk2-Notify
-	media-gfx/imagemagick
-	dev-perl/XML-Writer
-	dev-perl/Archive-Zip
-	dev-perl/DBI
-	dev-perl/Text-CSV
-	dev-perl/DBD-SQLite
-	dev-perl/Net-CUPS
-	dev-perl/Email-Address
-	dev-perl/Email-MIME
-	dev-perl/Email-Sender
-"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-1.3.0-desktop.patch"
-	"${FILESDIR}/${PN}-1.3.0-conf.patch"
-)
-
-src_compile() {
-	perl_set_version
-	export VENDOR_LIB PVR
-	export TEXINPUTS="/usr/share/dblatex/latex/style:/usr/share/dblatex/latex/misc:/usr/share/dblatex/latex/graphics:"
-
-	export MAKEOPTS="-j1"
-	# when doing a parallel build, the package is acting decidedly odd
-	# e.g., the build seems to succeed while actually stuff fails
-	# and subsequent error messages do not have any relation to the real problem
-	# So let's keep this also for easier debugging
-
-	emake \
-			GCC_NETPBM="-I/usr/include/netpbm/ -lnetpbm" \
-			GCC="$(tc-getCC)" \
-			GCC_PP="$(tc-getCXX)"
-}
-
-src_install() {
-	default
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2018-03-25 13:28 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2018-03-25 13:28 UTC (permalink / raw
  To: gentoo-commits

commit:     397ed177a352ab4675b4dd6b654dbcb92099c74c
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 25 13:28:32 2018 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Mar 25 13:28:42 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=397ed177

app-office/auto-multiple-choice: drop invalid usedep on texlive

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
index 925afe07ad3..a3734539e03 100644
--- a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
+++ b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -22,7 +22,7 @@ for lala in ${LANGS}; do
 done
 
 CDEPEND="
-	app-text/texlive[dvi2tty,extra,graphics,png,pstricks,science,truetype,xml,X,luatex,xetex,humanities,omega,publishers]
+	app-text/texlive[dvi2tty,extra,graphics,png,pstricks,science,truetype,xml,X,luatex,xetex,humanities,publishers]
 	app-text/poppler:=
 	dev-perl/XML-LibXML
 	media-libs/netpbm


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2018-04-02 14:27 Jonas Stein
  0 siblings, 0 replies; 13+ messages in thread
From: Jonas Stein @ 2018-04-02 14:27 UTC (permalink / raw
  To: gentoo-commits

commit:     e4497c2abf0d310fc187419441b882c5cd025e03
Author:     Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  2 14:26:22 2018 +0000
Commit:     Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Mon Apr  2 14:26:22 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4497c2a

app-office/auto-multiple-choice: drop Project Perl

Project Perl no longer maintains this.
Acked-by: dilfridge <AT> gentoo.org
Package-Manager: Portage-2.3.27, Repoman-2.3.9

 app-office/auto-multiple-choice/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/app-office/auto-multiple-choice/metadata.xml b/app-office/auto-multiple-choice/metadata.xml
index b9e2049178a..6e1247ad63e 100644
--- a/app-office/auto-multiple-choice/metadata.xml
+++ b/app-office/auto-multiple-choice/metadata.xml
@@ -5,10 +5,6 @@
     <email>office@gentoo.org</email>
     <name>Gentoo Office project</name>
   </maintainer>
-  <maintainer type="project">
-    <email>perl@gentoo.org</email>
-    <name>Gentoo Perl project</name>
-  </maintainer>
   <maintainer type="person">
     <email>nibheis@gmail.com</email>
     <name>Pierre-Olivier Vallès</name>


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2018-06-14 19:34 Jonas Stein
  0 siblings, 0 replies; 13+ messages in thread
From: Jonas Stein @ 2018-06-14 19:34 UTC (permalink / raw
  To: gentoo-commits

commit:     4d3ba57c1d33bf16827e22ef7240eef40abb05e7
Author:     Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 14 19:14:41 2018 +0000
Commit:     Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Thu Jun 14 19:33:58 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d3ba57c

app-office/auto-multiple-choice: Remove Maintainer

Remove proxied Maintainer due to inactivity.
Closes: https://bugs.gentoo.org/654502
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-office/auto-multiple-choice/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/app-office/auto-multiple-choice/metadata.xml b/app-office/auto-multiple-choice/metadata.xml
index 6e1247ad63e..603226d54b4 100644
--- a/app-office/auto-multiple-choice/metadata.xml
+++ b/app-office/auto-multiple-choice/metadata.xml
@@ -5,8 +5,4 @@
     <email>office@gentoo.org</email>
     <name>Gentoo Office project</name>
   </maintainer>
-  <maintainer type="person">
-    <email>nibheis@gmail.com</email>
-    <name>Pierre-Olivier Vallès</name>
-  </maintainer>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2020-01-19 16:52 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2020-01-19 16:52 UTC (permalink / raw
  To: gentoo-commits

commit:     4a5bce6b011608dbb42969011d37e3764c0b4e0b
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 19 16:51:56 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Jan 19 16:51:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a5bce6b

app-office/auto-multiple-choice: port to EAPI=7

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 .../auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild  | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
index a3734539e03..5a147ebd06c 100644
--- a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
+++ b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit toolchain-funcs perl-functions latex-package
 
@@ -21,7 +21,7 @@ for lala in ${LANGS}; do
 	IUSE="${IUSE} l10n_${lala}"
 done
 
-CDEPEND="
+COMMON_DEPEND="
 	app-text/texlive[dvi2tty,extra,graphics,png,pstricks,science,truetype,xml,X,luatex,xetex,humanities,publishers]
 	app-text/poppler:=
 	dev-perl/XML-LibXML
@@ -30,12 +30,12 @@ CDEPEND="
 	l10n_fr? ( app-text/texlive[l10n_fr] )
 	l10n_ja? ( app-text/texlive[l10n_ja] )
 "
-DEPEND="${CDEPEND}
+DEPEND="${COMMON_DEPEND}
 	app-text/dblatex
 	app-text/docbook-xml-simple-dtd:*
 	app-text/docbook-xsl-stylesheets
 "
-RDEPEND="${CDEPEND}
+RDEPEND="${COMMON_DEPEND}
 	app-text/pdftk
 	dev-lang/perl:=
 	dev-perl/Glib-Object-Introspection


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2020-09-10 21:57 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2020-09-10 21:57 UTC (permalink / raw
  To: gentoo-commits

commit:     73c2bf0eef7e43627764d5831a55273a19159540
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 10 21:56:47 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Sep 10 21:57:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73c2bf0e

app-office/auto-multiple-choice: fix texlive dep flags

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
index 5a147ebd06c..e77a5de6912 100644
--- a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
+++ b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
@@ -22,7 +22,7 @@ for lala in ${LANGS}; do
 done
 
 COMMON_DEPEND="
-	app-text/texlive[dvi2tty,extra,graphics,png,pstricks,science,truetype,xml,X,luatex,xetex,humanities,publishers]
+	app-text/texlive[extra,graphics,png,pstricks,science,truetype,xml,X,luatex,xetex,humanities,publishers]
 	app-text/poppler:=
 	dev-perl/XML-LibXML
 	media-libs/netpbm


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2020-11-26 23:33 Andreas K. Hüttel
  0 siblings, 0 replies; 13+ messages in thread
From: Andreas K. Hüttel @ 2020-11-26 23:33 UTC (permalink / raw
  To: gentoo-commits

commit:     1ce3ae765d647bd1d16598bad4a9eceed57f0582
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 23:32:33 2020 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 23:33:03 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce3ae76

app-office/auto-multiple-choice: Fix HOMEPAGE and SRC_URI

Closes: https://bugs.gentoo.org/624666
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
index e77a5de6912..c33d12be5cc 100644
--- a/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
+++ b/app-office/auto-multiple-choice/auto-multiple-choice-1.3.0-r1.ebuild
@@ -6,8 +6,9 @@ EAPI=7
 inherit toolchain-funcs perl-functions latex-package
 
 DESCRIPTION="Create and manage multiple choice questionnaries, including automated marking"
-HOMEPAGE="http://home.gna.org/auto-qcm/"
-SRC_URI="http://download.gna.org/auto-qcm/${PN}_${PV}_sources.tar.gz"
+HOMEPAGE="http://www.auto-multiple-choice.net/"
+SRC_URI="http://download.auto-multiple-choice.net/${PN}_${PV}_sources.tar.gz"
+
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2023-06-24 15:21 Matt Turner
  0 siblings, 0 replies; 13+ messages in thread
From: Matt Turner @ 2023-06-24 15:21 UTC (permalink / raw
  To: gentoo-commits

commit:     7edab0ad5489585620ccf19c498e4a911bf371d1
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 24 15:21:29 2023 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Jun 24 15:21:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7edab0ad

app-office/auto-multiple-choice: Add remote-id

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 app-office/auto-multiple-choice/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-office/auto-multiple-choice/metadata.xml b/app-office/auto-multiple-choice/metadata.xml
index ff67d627248e..d343271fb22c 100644
--- a/app-office/auto-multiple-choice/metadata.xml
+++ b/app-office/auto-multiple-choice/metadata.xml
@@ -5,4 +5,7 @@
     <email>office@gentoo.org</email>
     <name>Gentoo Office project</name>
   </maintainer>
+  <upstream>
+    <remote-id type="gitlab">a10684/auto-multiple-choice</remote-id>
+  </upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2023-06-24 23:08 Andreas K. Hüttel
  0 siblings, 0 replies; 13+ messages in thread
From: Andreas K. Hüttel @ 2023-06-24 23:08 UTC (permalink / raw
  To: gentoo-commits

commit:     076da3d66fa8432fd8609080fd137fc2dc6b6fed
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 24 23:08:10 2023 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Jun 24 23:08:37 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=076da3d6

app-office/auto-multiple-choice: add 1.6.0, drop 1.5.2

Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 app-office/auto-multiple-choice/Manifest                             | 2 +-
 ...ultiple-choice-1.5.2.ebuild => auto-multiple-choice-1.6.0.ebuild} | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/app-office/auto-multiple-choice/Manifest b/app-office/auto-multiple-choice/Manifest
index 62439f60e570..ae4e3760cf6a 100644
--- a/app-office/auto-multiple-choice/Manifest
+++ b/app-office/auto-multiple-choice/Manifest
@@ -1,2 +1,2 @@
 DIST auto-multiple-choice_1.3.0_sources.tar.gz 4328255 BLAKE2B 7c6337cfa0a12d8dcd9fa640e636c300234ba7e7a34e95a523c5f9836f934da336f6ce792932fffb97b28ae02c577166a3d4d3ea4fd6959786a5c60510b454a2 SHA512 fcfacd071072f5773556c706b6fa0aea4ff3f3752f3a1f40c9e6de7ec870e939adc57e6bd4c90cac80241cc798e02a71c9fc80d9ccf25ad3a10752f937d06da5
-DIST auto-multiple-choice_1.5.2_sources.tar.gz 7729206 BLAKE2B cc7aec00626028e4cd5a0b774d65bb652e12577040baa70823831f4744fa2bdd018fe751e0b9cf16daeacecf39607554dee4bbf8daf2f18fb958232d95672a5b SHA512 b70932112a30d6af10d4c0c3c3f7b9e89b86111305c0279042da82e030d2de8caad1012eadeb6d0d487305d0ee5c91d056979184665dcd9b44cc9078d6703c87
+DIST auto-multiple-choice_1.6.0_sources.tar.gz 9597797 BLAKE2B 2ce5162223802a7e9d6025e0a324b507e218389cff63ca863846bd2be36fc7a3a0d6aede3b2d85da4c37b9c25cadaa544c8b9d79458a0936d8c1b9fce244a5da SHA512 b6640ae1bbea9438de38f55b4e0cb6fa93de3598ecf75bce5a6891f8db568bff7aa7ca286bfb07646fd5bed6625d434093e3b574b96711a65fbd10f9ddadcf74

diff --git a/app-office/auto-multiple-choice/auto-multiple-choice-1.5.2.ebuild b/app-office/auto-multiple-choice/auto-multiple-choice-1.6.0.ebuild
similarity index 93%
rename from app-office/auto-multiple-choice/auto-multiple-choice-1.5.2.ebuild
rename to app-office/auto-multiple-choice/auto-multiple-choice-1.6.0.ebuild
index 7cfbd7732a1a..60a7e5d8dd22 100644
--- a/app-office/auto-multiple-choice/auto-multiple-choice-1.5.2.ebuild
+++ b/app-office/auto-multiple-choice/auto-multiple-choice-1.6.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://download.auto-multiple-choice.net/${PN}_${PV}_sources.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-#KEYWORDS="~amd64 ~x86"  # work in progress- dilfridge
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 LANGS="ar es fr ja"
@@ -26,6 +26,7 @@ COMMON_DEPEND="
 	app-text/texlive[cjk,extra,graphics,png,pstricks,science,truetype,xml,X,luatex,xetex,humanities,publishers,l10n_zh]
 	app-text/poppler:=
 	dev-perl/XML-LibXML
+	media-fonts/ipaex
 	media-libs/netpbm
 	media-libs/opencv
 	l10n_fr? ( app-text/texlive[l10n_fr] )
@@ -91,4 +92,6 @@ src_compile() {
 
 src_install() {
 	default
+	mv -v "${ED}/usr/share/doc/${PV}"/* "${ED}/usr/share/doc/${PF}/" || die
+	rmdir -v "${ED}/usr/share/doc/${PV}" || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/
@ 2023-07-06 15:58 Matt Turner
  0 siblings, 0 replies; 13+ messages in thread
From: Matt Turner @ 2023-07-06 15:58 UTC (permalink / raw
  To: gentoo-commits

commit:     8ab693cdb9794c5e2949e9e9ce509b65ba1d7d48
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  6 15:52:49 2023 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Jul  6 15:58:30 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ab693cd

app-office/auto-multiple-choice: Require netpbm[png]

Closes: https://bugs.gentoo.org/909172
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 app-office/auto-multiple-choice/auto-multiple-choice-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/auto-multiple-choice/auto-multiple-choice-1.6.0.ebuild b/app-office/auto-multiple-choice/auto-multiple-choice-1.6.0.ebuild
index 60a7e5d8dd22..6cd14ee071e6 100644
--- a/app-office/auto-multiple-choice/auto-multiple-choice-1.6.0.ebuild
+++ b/app-office/auto-multiple-choice/auto-multiple-choice-1.6.0.ebuild
@@ -27,7 +27,7 @@ COMMON_DEPEND="
 	app-text/poppler:=
 	dev-perl/XML-LibXML
 	media-fonts/ipaex
-	media-libs/netpbm
+	media-libs/netpbm[png]
 	media-libs/opencv
 	l10n_fr? ( app-text/texlive[l10n_fr] )
 	l10n_ja? ( app-text/texlive[l10n_ja] )


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

end of thread, other threads:[~2023-07-06 15:58 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-26 23:33 [gentoo-commits] repo/gentoo:master commit in: app-office/auto-multiple-choice/ Andreas K. Hüttel
  -- strict thread matches above, loose matches on Subject: below --
2023-07-06 15:58 Matt Turner
2023-06-24 23:08 Andreas K. Hüttel
2023-06-24 15:21 Matt Turner
2020-09-10 21:57 Mikle Kolyada
2020-01-19 16:52 Mikle Kolyada
2018-06-14 19:34 Jonas Stein
2018-04-02 14:27 Jonas Stein
2018-03-25 13:28 Alexis Ballier
2017-07-07 11:40 Alexis Ballier
2017-04-23 21:02 Andreas Hüttel
2017-04-23 20:35 Andreas Hüttel
2017-01-21 23:16 Andreas Hüttel

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