public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-db/apgdiff/
@ 2020-09-24 19:53 Aaron Bauman
  0 siblings, 0 replies; 7+ messages in thread
From: Aaron Bauman @ 2020-09-24 19:53 UTC (permalink / raw
  To: gentoo-commits

commit:     262b12856e9fdd40fc669059eb19df791fc84ab3
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 24 19:40:33 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu Sep 24 19:53:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=262b1285

dev-db/apgdiff: drop old EAPI=5

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 dev-db/apgdiff/Manifest             |  4 ---
 dev-db/apgdiff/apgdiff-1.4.ebuild   | 51 -------------------------------------
 dev-db/apgdiff/apgdiff-2.2.1.ebuild | 51 -------------------------------------
 dev-db/apgdiff/apgdiff-2.2.2.ebuild | 51 -------------------------------------
 dev-db/apgdiff/apgdiff-2.3.ebuild   | 51 -------------------------------------
 5 files changed, 208 deletions(-)

diff --git a/dev-db/apgdiff/Manifest b/dev-db/apgdiff/Manifest
index e71c6ff7e68..e2443ad6aba 100644
--- a/dev-db/apgdiff/Manifest
+++ b/dev-db/apgdiff/Manifest
@@ -1,5 +1 @@
-DIST apgdiff-1.4-src.zip 178608 BLAKE2B 5ea0c4ea151a4bb60711b90ecd27a42b02ab08f16034d194646a8b3d3b22fc7d98862b4629a4411127ba6a2898d25264311287d9299cd801969d5d8d04ffd036 SHA512 c1dcd3f39e931f90e65a439a610d5b264b790419a59b2c90f6d9107c1b5151c602887588f378110a2e9420428414fc333c7919e2137e2dc35168654ceb3ae8d0
-DIST apgdiff-2.2.1-src.zip 194305 BLAKE2B 9c4d5eb7639038b591d31a6059efa0c78cdd1e21826ab5992a236abc492d3ef9e8712b0a7516253903bb88055d8594e83a1f5892e6fae90336e76258eecee4bd SHA512 cab6b2349d5822ca579c1e021ea7f02f5ddf39d56559f841d0cadfdccc1c1c61399c494302ea5909984b9a8a6d91cf08868f012dd3487a8633f65e3bbd28f19c
-DIST apgdiff-2.2.2-src.zip 198814 BLAKE2B b044f16475576fd714b6196da55ec1b744255aeb3cdccc2fd654500235cd0b500b8188e7d06962bb8fd28dc1a77e3526cf39550eb89da101d6255b1b6b9fe59d SHA512 273ba473b5b4ccfe2ae1b3f34ce2c2b825e446fad166f28a4575528190c20922e6794563ae3e5b2918ade5a3292a792ea363e9e5ec0900e924332d8771548c0b
-DIST apgdiff-2.3-src.zip 215881 BLAKE2B 05482ec11e278f5408305e16ee57bef99eb3e362ebdc5055781017ff40890a56936b515dd9973b557ad64d4a7e934b1bb5886207a9d9a9e0365d0e41f3fe008c SHA512 e716143ff4378fc27c4781076c51826583c2ad9dab17f4364acbfed0f9a0958dca0de9a72171816bbce41653ad33834158cb9277dd8790649da4bd24e013bbb5
 DIST apgdiff-2.4-src.zip 227714 BLAKE2B 1c62c94592b28a7caf5a56f4ef4206cc2655f2da278d5a71e165f409587d1573dd44b62261817f0b994ed95a398555190dee6a2873fe493f695e91c6cf9dd22c SHA512 f37e0f86ff8a8bc53a43cac1748ab3a2c96ab6c972b37ee63f281ee397b31a7b48986cbc963d89ea773f1bb7b10b798de74a4c88a03f2db7672501b93355261b

diff --git a/dev-db/apgdiff/apgdiff-1.4.ebuild b/dev-db/apgdiff/apgdiff-1.4.ebuild
deleted file mode 100644
index b23143f348b..00000000000
--- a/dev-db/apgdiff/apgdiff-1.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-JAVA_PKG_IUSE="doc source"
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="A simple PostgreSQL diff tool that is useful for schema upgrades"
-HOMEPAGE="https://www.apgdiff.com/"
-SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND=">=virtual/jdk-1.5
-	>=dev-java/ant-core-1.7.0:0
-	>=dev-java/ant-junit-1.7.0:0
-	app-arch/zip:0
-	test? (
-		dev-java/hamcrest-core:0
-		>=dev-java/junit-4.4:4
-	)"
-
-RDEPEND=">=virtual/jre-1.5"
-
-java_prepare() {
-	mkdir "${S}"/lib
-	cd "${S}"/lib
-	if use test ; then
-		java-pkg_jar-from --build-only hamcrest-core
-		java-pkg_jar-from --build-only junit-4
-	fi
-}
-
-src_compile() {
-	eant -Dnoget=true jar $(use_doc)
-}
-
-src_install() {
-	java-pkg_newjar dist/${P}.jar ${PN}.jar
-	java-pkg_dolauncher apgdiff --jar ${PN}.jar
-
-	use doc && java-pkg_dojavadoc dist/javadoc
-	use source && java-pkg_dosrc src/main/java/*
-}
-
-src_test() {
-	ANT_TASKS="ant-junit" eant -Dnoget=true test
-}

diff --git a/dev-db/apgdiff/apgdiff-2.2.1.ebuild b/dev-db/apgdiff/apgdiff-2.2.1.ebuild
deleted file mode 100644
index 82e2382f393..00000000000
--- a/dev-db/apgdiff/apgdiff-2.2.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-JAVA_PKG_IUSE="doc source"
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="A simple PostgreSQL diff tool that is useful for schema upgrades"
-HOMEPAGE="https://apgdiff.com"
-SRC_URI="https://apgdiff.com/download/${P}-src.zip"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND=">=virtual/jdk-1.6
-	>=dev-java/ant-core-1.7.0:0
-	>=dev-java/ant-junit-1.7.0:0
-	app-arch/zip:0
-	test? (
-		dev-java/hamcrest-core:1.3
-		>=dev-java/junit-4.4:4
-	)"
-
-RDEPEND=">=virtual/jre-1.6"
-
-java_prepare() {
-	mkdir "${S}"/lib
-	cd "${S}"/lib
-	if use test ; then
-		java-pkg_jar-from --build-only hamcrest-core-1.3
-		java-pkg_jar-from --build-only junit-4
-	fi
-}
-
-src_compile() {
-	eant -Dnoget=true jar $(use_doc)
-}
-
-src_install() {
-	java-pkg_newjar dist/${P}.jar ${PN}.jar
-	java-pkg_dolauncher apgdiff --jar ${PN}.jar
-
-	use doc && java-pkg_dojavadoc dist/javadoc
-	use source && java-pkg_dosrc src/main/java/*
-}
-
-src_test() {
-	ANT_TASKS="ant-junit" eant -Dnoget=true test
-}

diff --git a/dev-db/apgdiff/apgdiff-2.2.2.ebuild b/dev-db/apgdiff/apgdiff-2.2.2.ebuild
deleted file mode 100644
index 8066c91411e..00000000000
--- a/dev-db/apgdiff/apgdiff-2.2.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-JAVA_PKG_IUSE="doc source"
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="A simple PostgreSQL diff tool that is useful for schema upgrades"
-HOMEPAGE="https://apgdiff.com"
-SRC_URI="https://apgdiff.com/download/${P}-src.zip"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND=">=virtual/jdk-1.6
-	>=dev-java/ant-core-1.7.0:0
-	>=dev-java/ant-junit-1.7.0:0
-	app-arch/zip:0
-	test? (
-		dev-java/hamcrest-core:0
-		>=dev-java/junit-4.4:4
-	)"
-
-RDEPEND=">=virtual/jre-1.6"
-
-java_prepare() {
-	mkdir "${S}"/lib
-	cd "${S}"/lib
-	if use test ; then
-		java-pkg_jar-from --build-only hamcrest-core
-		java-pkg_jar-from --build-only junit-4
-	fi
-}
-
-src_compile() {
-	eant -Dnoget=true jar $(use_doc)
-}
-
-src_install() {
-	java-pkg_newjar dist/${P}.jar ${PN}.jar
-	java-pkg_dolauncher apgdiff --jar ${PN}.jar
-
-	use doc && java-pkg_dojavadoc dist/javadoc
-	use source && java-pkg_dosrc src/main/java/*
-}
-
-src_test() {
-	ANT_TASKS="ant-junit" eant -Dnoget=true test
-}

diff --git a/dev-db/apgdiff/apgdiff-2.3.ebuild b/dev-db/apgdiff/apgdiff-2.3.ebuild
deleted file mode 100644
index 8066c91411e..00000000000
--- a/dev-db/apgdiff/apgdiff-2.3.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-JAVA_PKG_IUSE="doc source"
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="A simple PostgreSQL diff tool that is useful for schema upgrades"
-HOMEPAGE="https://apgdiff.com"
-SRC_URI="https://apgdiff.com/download/${P}-src.zip"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND=">=virtual/jdk-1.6
-	>=dev-java/ant-core-1.7.0:0
-	>=dev-java/ant-junit-1.7.0:0
-	app-arch/zip:0
-	test? (
-		dev-java/hamcrest-core:0
-		>=dev-java/junit-4.4:4
-	)"
-
-RDEPEND=">=virtual/jre-1.6"
-
-java_prepare() {
-	mkdir "${S}"/lib
-	cd "${S}"/lib
-	if use test ; then
-		java-pkg_jar-from --build-only hamcrest-core
-		java-pkg_jar-from --build-only junit-4
-	fi
-}
-
-src_compile() {
-	eant -Dnoget=true jar $(use_doc)
-}
-
-src_install() {
-	java-pkg_newjar dist/${P}.jar ${PN}.jar
-	java-pkg_dolauncher apgdiff --jar ${PN}.jar
-
-	use doc && java-pkg_dojavadoc dist/javadoc
-	use source && java-pkg_dosrc src/main/java/*
-}
-
-src_test() {
-	ANT_TASKS="ant-junit" eant -Dnoget=true test
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/apgdiff/
@ 2021-04-18  6:06 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-04-18  6:06 UTC (permalink / raw
  To: gentoo-commits

commit:     f52f9319ecb8112d15227daa9bbe579d35bce3df
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 18 04:25:07 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 18 06:05:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f52f9319

dev-db/apgdiff: fix app-arch/zip dependency

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-db/apgdiff/apgdiff-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/apgdiff/apgdiff-2.4.ebuild b/dev-db/apgdiff/apgdiff-2.4.ebuild
index f9094db4e46..eed28c45818 100644
--- a/dev-db/apgdiff/apgdiff-2.4.ebuild
+++ b/dev-db/apgdiff/apgdiff-2.4.ebuild
@@ -17,7 +17,7 @@ RESTRICT="!test? ( test )"
 DEPEND=">=virtual/jdk-1.6
 	>=dev-java/ant-core-1.7.0:0
 	>=dev-java/ant-junit-1.7.0:0
-	app-arch/zip:0
+	app-arch/unzip:0
 	test? (
 		dev-java/hamcrest-core:0
 		>=dev-java/junit-4.4:4


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/apgdiff/
@ 2021-10-04  6:20 Miroslav Šulc
  0 siblings, 0 replies; 7+ messages in thread
From: Miroslav Šulc @ 2021-10-04  6:20 UTC (permalink / raw
  To: gentoo-commits

commit:     40c52e6905ce8f4a541ad0740b4acc512fb381f1
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  4 06:20:44 2021 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Oct  4 06:20:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40c52e69

dev-db/apgdiff: updated homepage

Package-Manager: Portage-3.0.26, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 dev-db/apgdiff/apgdiff-2.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/apgdiff/apgdiff-2.7.0.ebuild b/dev-db/apgdiff/apgdiff-2.7.0.ebuild
index cea00c1a158..40a2fdce903 100644
--- a/dev-db/apgdiff/apgdiff-2.7.0.ebuild
+++ b/dev-db/apgdiff/apgdiff-2.7.0.ebuild
@@ -13,7 +13,7 @@ JAVA_TESTING_FRAMEWORKS="junit-4"
 inherit java-pkg-2 java-pkg-simple
 
 DESCRIPTION="A simple PostgreSQL diff tool that is useful for schema upgrades"
-HOMEPAGE="http://www.apgdiff.com/"
+HOMEPAGE="https://github.com/fordfrog/apgdiff https://www.apgdiff.com/"
 SRC_URI="https://github.com/fordfrog/${PN}/archive/refs/tags/release_${PV}.tar.gz -> ${P}-sources.tar.gz"
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/apgdiff/
@ 2021-10-04  6:20 Miroslav Šulc
  0 siblings, 0 replies; 7+ messages in thread
From: Miroslav Šulc @ 2021-10-04  6:20 UTC (permalink / raw
  To: gentoo-commits

commit:     f4d743739ced715fba01e9b99899602f740ee4be
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  4 06:19:11 2021 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Oct  4 06:20:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4d74373

dev-db/apgdiff: bump to 2.7.0

Package-Manager: Portage-3.0.26, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 dev-db/apgdiff/Manifest             |  1 +
 dev-db/apgdiff/apgdiff-2.7.0.ebuild | 55 +++++++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/dev-db/apgdiff/Manifest b/dev-db/apgdiff/Manifest
index e2443ad6aba..8d4eb5dcbdb 100644
--- a/dev-db/apgdiff/Manifest
+++ b/dev-db/apgdiff/Manifest
@@ -1 +1,2 @@
 DIST apgdiff-2.4-src.zip 227714 BLAKE2B 1c62c94592b28a7caf5a56f4ef4206cc2655f2da278d5a71e165f409587d1573dd44b62261817f0b994ed95a398555190dee6a2873fe493f695e91c6cf9dd22c SHA512 f37e0f86ff8a8bc53a43cac1748ab3a2c96ab6c972b37ee63f281ee397b31a7b48986cbc963d89ea773f1bb7b10b798de74a4c88a03f2db7672501b93355261b
+DIST apgdiff-2.7.0-sources.tar.gz 365759 BLAKE2B 6a43bea29fa77a6a07b8599b150769e42480e656d7930faf56dd5db89a2281e10baee596e78d245411879ca99e143d3ebfb6144ea68b5d2f56f7f939004897dc SHA512 db52bcf5af78339ab08cd6a5225d7df9d55cf4eb1bcefaf9e9b12f8ac06f7babb2261ac92b7aa49a6f43a39f9e7894f4dea88b1b794f0a87681ab872c5d1d430

diff --git a/dev-db/apgdiff/apgdiff-2.7.0.ebuild b/dev-db/apgdiff/apgdiff-2.7.0.ebuild
new file mode 100644
index 00000000000..cea00c1a158
--- /dev/null
+++ b/dev-db/apgdiff/apgdiff-2.7.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Skeleton command:
+# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/fordfrog/apgdiff/archive/refs/tags/release_2.7.0.tar.gz --slot 0 --keywords "~amd64 ~x86" --ebuild apgdiff-2.7.0.ebuild
+
+EAPI=7
+
+JAVA_PKG_IUSE="doc source test"
+MAVEN_ID="cz.startnet:apgdiff:2.7.0"
+JAVA_TESTING_FRAMEWORKS="junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="A simple PostgreSQL diff tool that is useful for schema upgrades"
+HOMEPAGE="http://www.apgdiff.com/"
+SRC_URI="https://github.com/fordfrog/${PN}/archive/refs/tags/release_${PV}.tar.gz -> ${P}-sources.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# Compile dependencies
+# POM: pom.xml
+# test? junit:junit:4.13.1 -> >=dev-java/junit-4.13.2:4
+# test? org.hamcrest:hamcrest-all:1.3 -> !!!artifactId-not-found!!!
+
+DEPEND="
+	>=virtual/jdk-1.8:*
+	${CDEPEND}
+	test? (
+		dev-java/hamcrest-core:0
+	)
+"
+
+RDEPEND="
+	>=virtual/jre-1.8:*
+	${CDEPEND}"
+
+RESTRICT="!test? ( test )"
+
+S="${WORKDIR}/${PN}-release_${PV}"
+
+JAVA_LAUNCHER_FILENAME="${PN}"
+
+JAVA_SRC_DIR="src/main/java"
+JAVA_MAIN_CLASS="cz.startnet.utils.pgdiff.Main"
+JAVA_RESOURCE_DIRS=(
+	"src/main/resources"
+)
+
+JAVA_TEST_GENTOO_CLASSPATH="hamcrest-core,junit-4"
+JAVA_TEST_SRC_DIR="src/test/java"
+JAVA_TEST_RESOURCE_DIRS=(
+	"src/test/resources"
+)


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/apgdiff/
@ 2021-10-04  6:20 Miroslav Šulc
  0 siblings, 0 replies; 7+ messages in thread
From: Miroslav Šulc @ 2021-10-04  6:20 UTC (permalink / raw
  To: gentoo-commits

commit:     db34e8bcfbd15087003a65d12d6dcaf14ebe75aa
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  4 06:19:51 2021 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Oct  4 06:20:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db34e8bc

dev-db/apgdiff: removed obsolete 2.4

Package-Manager: Portage-3.0.26, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 dev-db/apgdiff/Manifest           |  1 -
 dev-db/apgdiff/apgdiff-2.4.ebuild | 51 ---------------------------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-db/apgdiff/Manifest b/dev-db/apgdiff/Manifest
index 8d4eb5dcbdb..b2265dab874 100644
--- a/dev-db/apgdiff/Manifest
+++ b/dev-db/apgdiff/Manifest
@@ -1,2 +1 @@
-DIST apgdiff-2.4-src.zip 227714 BLAKE2B 1c62c94592b28a7caf5a56f4ef4206cc2655f2da278d5a71e165f409587d1573dd44b62261817f0b994ed95a398555190dee6a2873fe493f695e91c6cf9dd22c SHA512 f37e0f86ff8a8bc53a43cac1748ab3a2c96ab6c972b37ee63f281ee397b31a7b48986cbc963d89ea773f1bb7b10b798de74a4c88a03f2db7672501b93355261b
 DIST apgdiff-2.7.0-sources.tar.gz 365759 BLAKE2B 6a43bea29fa77a6a07b8599b150769e42480e656d7930faf56dd5db89a2281e10baee596e78d245411879ca99e143d3ebfb6144ea68b5d2f56f7f939004897dc SHA512 db52bcf5af78339ab08cd6a5225d7df9d55cf4eb1bcefaf9e9b12f8ac06f7babb2261ac92b7aa49a6f43a39f9e7894f4dea88b1b794f0a87681ab872c5d1d430

diff --git a/dev-db/apgdiff/apgdiff-2.4.ebuild b/dev-db/apgdiff/apgdiff-2.4.ebuild
deleted file mode 100644
index eed28c45818..00000000000
--- a/dev-db/apgdiff/apgdiff-2.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-JAVA_PKG_IUSE="doc source"
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="A simple PostgreSQL diff tool that is useful for schema upgrades"
-HOMEPAGE="https://apgdiff.com"
-SRC_URI="https://apgdiff.com/download/${P}-src.zip"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND=">=virtual/jdk-1.6
-	>=dev-java/ant-core-1.7.0:0
-	>=dev-java/ant-junit-1.7.0:0
-	app-arch/unzip:0
-	test? (
-		dev-java/hamcrest-core:0
-		>=dev-java/junit-4.4:4
-	)"
-
-RDEPEND=">=virtual/jre-1.6"
-
-java_prepare() {
-	mkdir "${S}"/lib
-	cd "${S}"/lib
-	if use test ; then
-		java-pkg_jar-from --build-only hamcrest-core
-		java-pkg_jar-from --build-only junit-4
-	fi
-}
-
-src_compile() {
-	eant -Dnoget=true jar $(use_doc)
-}
-
-src_install() {
-	java-pkg_newjar dist/${P}.jar ${PN}.jar
-	java-pkg_dolauncher apgdiff --jar ${PN}.jar
-
-	use doc && java-pkg_dojavadoc dist/javadoc
-	use source && java-pkg_dosrc src/main/java/*
-}
-
-src_test() {
-	ANT_TASKS="ant-junit" eant -Dnoget=true test
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/apgdiff/
@ 2023-05-09  5:54 Miroslav Šulc
  0 siblings, 0 replies; 7+ messages in thread
From: Miroslav Šulc @ 2023-05-09  5:54 UTC (permalink / raw
  To: gentoo-commits

commit:     b54cc63bd1201872894f8d0c696f37ee718b89b1
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Mon May  8 06:39:14 2023 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Tue May  9 05:54:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b54cc63b

dev-db/apgdiff: update upstream metadata

Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/30928
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 dev-db/apgdiff/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/apgdiff/metadata.xml b/dev-db/apgdiff/metadata.xml
index 403757d2e151..1f8114f046d4 100644
--- a/dev-db/apgdiff/metadata.xml
+++ b/dev-db/apgdiff/metadata.xml
@@ -5,6 +5,6 @@
     <email>java@gentoo.org</email>
   </maintainer>
   <upstream>
-    <remote-id type="sourceforge">apgdiff</remote-id>
+    <remote-id type="github">fordfrog/apgdiff</remote-id>
   </upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-db/apgdiff/
@ 2024-11-25  8:06 Miroslav Šulc
  0 siblings, 0 replies; 7+ messages in thread
From: Miroslav Šulc @ 2024-11-25  8:06 UTC (permalink / raw
  To: gentoo-commits

commit:     c97555c833c5bd2d758315d6eac13b71e0efb498
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Fri Nov  8 17:24:08 2024 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Nov 25 08:05:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c97555c8

dev-db/apgdiff: style update, update EAPI 7 -> 8

Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/39233/commits/59ed8573709cd9513beba78dc5f365dc4532c3fb
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 ...pgdiff-2.7.0.ebuild => apgdiff-2.7.0-r1.ebuild} | 25 +++++-----------------
 1 file changed, 5 insertions(+), 20 deletions(-)

diff --git a/dev-db/apgdiff/apgdiff-2.7.0.ebuild b/dev-db/apgdiff/apgdiff-2.7.0-r1.ebuild
similarity index 56%
rename from dev-db/apgdiff/apgdiff-2.7.0.ebuild
rename to dev-db/apgdiff/apgdiff-2.7.0-r1.ebuild
index 25a2bab6828c..8295ae9059f6 100644
--- a/dev-db/apgdiff/apgdiff-2.7.0.ebuild
+++ b/dev-db/apgdiff/apgdiff-2.7.0-r1.ebuild
@@ -1,10 +1,7 @@
 # Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/fordfrog/apgdiff/archive/refs/tags/release_2.7.0.tar.gz --slot 0 --keywords "~amd64 ~x86" --ebuild apgdiff-2.7.0.ebuild
-
-EAPI=7
+EAPI=8
 
 JAVA_PKG_IUSE="doc source test"
 MAVEN_ID="cz.startnet:apgdiff:2.7.0"
@@ -14,33 +11,21 @@ inherit java-pkg-2 java-pkg-simple
 
 DESCRIPTION="A simple PostgreSQL diff tool that is useful for schema upgrades"
 HOMEPAGE="https://github.com/fordfrog/apgdiff https://www.apgdiff.com/"
-SRC_URI="https://github.com/fordfrog/${PN}/archive/refs/tags/release_${PV}.tar.gz -> ${P}-sources.tar.gz"
+SRC_URI="https://github.com/fordfrog/${PN}/archive/release_${PV}.tar.gz -> ${P}-sources.tar.gz"
+S="${WORKDIR}/${PN}-release_${PV}"
+
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 
-# Compile dependencies
-# POM: pom.xml
-# test? junit:junit:4.13.1 -> >=dev-java/junit-4.13.2:4
-# test? org.hamcrest:hamcrest-all:1.3 -> !!!artifactId-not-found!!!
-
 DEPEND="
 	>=virtual/jdk-1.8:*
-	${CDEPEND}
 	test? (
 		dev-java/hamcrest-core:0
 	)
 "
 
-RDEPEND="
-	>=virtual/jre-1.8:*
-	${CDEPEND}"
-
-RESTRICT="!test? ( test )"
-
-S="${WORKDIR}/${PN}-release_${PV}"
-
-JAVA_LAUNCHER_FILENAME="${PN}"
+RDEPEND=">=virtual/jre-1.8:*"
 
 JAVA_SRC_DIR="src/main/java"
 JAVA_MAIN_CLASS="cz.startnet.utils.pgdiff.Main"


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

end of thread, other threads:[~2024-11-25  8:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-18  6:06 [gentoo-commits] repo/gentoo:master commit in: dev-db/apgdiff/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-11-25  8:06 Miroslav Šulc
2023-05-09  5:54 Miroslav Šulc
2021-10-04  6:20 Miroslav Šulc
2021-10-04  6:20 Miroslav Šulc
2021-10-04  6:20 Miroslav Šulc
2020-09-24 19:53 Aaron Bauman

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