summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* dev-java/jackrabbit-webdav: depend on dev-java/tomcat-servlet-api:2.3Volkmar W. Pogatzki2022-09-191-1/+1
| | | | | | | | | | * slot 2.3 of java-virtuals/servlet-api will be removed as it has only one provider * jackrabbit-webdav (slot 0) which is the only consumer depends now directly on tomcat-servlet-api:2.3 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Florian Schmaus <flow@gentoo.org>
* dev-java/jackrabbit-webdav: update HOMEPAGEVolkmar W. Pogatzki2022-09-191-1/+1
| | | | | Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Florian Schmaus <flow@gentoo.org>
* dev-java/jackrabbit-webdav: removed obsolete 2.21.7Miroslav Šulc2022-04-011-63/+0
| | | | | Bug: https://bugs.gentoo.org/show_bug.cgi?id=835718 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
* dev-java/jackrabbit-webdav: Stabilize 2.21.7-r1 arm64, #835718Arthur Zamarin2022-03-311-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-java/jackrabbit-webdav: x86 stable wrt bug #835718Agostino Sarubbo2022-03-231-1/+1
| | | | | | Package-Manager: Portage-3.0.30, Repoman-3.0.3 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* dev-java/jackrabbit-webdav: amd64 stable wrt bug #835718Agostino Sarubbo2022-03-231-1/+1
| | | | | | Package-Manager: Portage-3.0.30, Repoman-3.0.3 RepoMan-Options: --include-arches="amd64" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* dev-java/jackrabbit-webdav: ppc64 stable wrt bug #835718Agostino Sarubbo2022-03-221-1/+1
| | | | | | Package-Manager: Portage-3.0.30, Repoman-3.0.3 RepoMan-Options: --include-arches="ppc64" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* dev-java/jackrabbit-webdav: switch to httpcomponents-clientVolkmar W. Pogatzki2022-02-201-0/+63
| | | | | | | | | | The new package dev-java/httpcomponents-client was in slot 4 of dev-java/commons-httpclient before. Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/23703 Signed-off-by: Florian Schmaus <flow@gentoo.org>
* dev-java/jackrabbit-webdav: Stabilize 2.10.1-r2 x86, #833115Jakov Smolić2022-02-111-1/+1
| | | | Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
* dev-java/jackrabbit-webdav: Drop 2.10.1Volkmar W. Pogatzki2022-02-114-453/+0
| | | | | | Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
* dev-java/jackrabbit-webdav: ppc64 stable wrt bug #832896Agostino Sarubbo2022-02-111-1/+1
| | | | | | Package-Manager: Portage-3.0.28, Repoman-3.0.3 RepoMan-Options: --include-arches="ppc64" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
* dev-java/jackrabbit-webdav: Stabilize 2.10.1-r2 arm64, #832896Sam James2022-02-091-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-java/jackrabbit-webdav: Stabilize 2.10.1-r2 amd64, #832896Jakov Smolić2022-02-081-1/+1
| | | | Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
* dev-java/jackrabbit-webdav: Keyword 2.10.1-r2 arm, #830838Arthur Zamarin2022-01-141-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-java/jackrabbit-webdav: removed obsolete 2.10.1-r1Miroslav Šulc2022-01-091-68/+0
| | | | | Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
* dev-java/jackrabbit-webdav: Fix tests and use HTTPS HOMEPAGE for 2.10.1Yuan Liao2022-01-091-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test failure bug being fixed by this commit is caused by servlet-api-4.0 being added to the classpath earlier than servlet-api-2.3 by java-ant-2.eclass. servlet-api-4.0 is present in the classpath because it is a transitive dependency of this package introduced by dev-java/bndlib, but it is incompatible with the test sources. The tests are supposed to be compiled with servlet-api-2.3, but javac will choose servlet-api-4.0 because it appears earlier in the classpath. java-ant-2.eclass constructs the classpath by traversing the dependency tree using depth-first search, so transitive dependencies like servlet-api-4.0 can appear earlier than direct dependencies like servlet-api-2.3. java-pkg-simple.eclass, on the other hand, uses breadth-first search, which ensures that all direct dependencies will be visited earlier than any transitive dependencies in the traversal. Therefore, simply switching to java-pkg-simple.eclass resolves this bug. However, by doing this, this ebuild now relies on the undocumented implementation detail of java-pkg-simple.eclass, that the dependency tree is traversed with BFS. If java-pkg-simple.eclass switches to DFS for classpath construction in the future, the same bug might resurface! Yet there are still benefits of using java-pkg-simple.eclass even if it were not done merely for the bug. The upstream uses Maven instead of Ant to build the project -- the build.xml used by java-ant-2.eclass is a Gentoo custom one. Switching to java-pkg-simple.eclass means that there is no more maintenance burden of this package caused by the custom build.xml. As of this commit, ebuilds for slot 2 of this package also use java-pkg-simple.eclass, so the eclass switch fosters consistency. Closes: https://bugs.gentoo.org/804594 Signed-off-by: Yuan Liao <liaoyuan@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/23705 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
* dev-java/jackrabbit-webdav: Keyword 2.21.7 arm64, #830680Arthur Zamarin2022-01-081-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-java/jackrabbit-webdav: Keyword 2.10.1-r1 arm64, #830680Arthur Zamarin2022-01-071-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-java/jackrabbit-webdav: Keyword 2.21.7 arm, #830680Arthur Zamarin2022-01-071-2/+2
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* dev-java/jackrabbit-webdav: added missing unzipperMiroslav Šulc2022-01-072-2/+5
| | | | | Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
* dev-java/jackrabbit-webdav: eapi8, min java 1.8 - in 2.10.1Miroslav Šulc2022-01-073-4/+70
| | | | | Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
* dev-java/jackrabbit-webdav: Stabilize 2.10.1 ppc64, #809560Sam James2021-11-261-2/+2
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* **/metadata.xml: Replace http by https in DOCTYPE elementUlrich Müller2021-09-111-1/+1
| | | | | Bug: https://bugs.gentoo.org/552720 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* dev-java/jackrabbit-webdav: Stabilize 2.21.7 ppc64, #810490Sam James2021-08-261-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-java/jackrabbit-webdav: Stabilize 2.21.7 amd64, #810490Sam James2021-08-261-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-java/jackrabbit-webdav: Stabilize 2.21.7 x86, #810490Sam James2021-08-261-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* dev-java/jackrabbit-webdav: bump to 2.21.7Volkmar W. Pogatzki2021-07-272-0/+64
| | | | | | | | Bug: https://bugs.gentoo.org/804561 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/21799 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
* dev-java/jackrabbit-webdav: keyworded 2.10.1 for ppc64Sergei Trofimovich2020-07-121-2/+2
| | | | | | | | keyworded wrt bug #720116 Package-Manager: Portage-2.3.103, Repoman-2.3.23 RepoMan-Options: --include-arches="ppc64" Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-java/*: Update Manifest hashesMichał Górny2017-12-091-1/+1
|
* Drop $Id$ per council decision in bug #611234.Robin H. Johnson2017-02-281-1/+0
| | | | Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* fix quoting to a lot of patch callsMike Frysinger2017-01-201-1/+1
|
* Set appropriate maintainer types in metadata.xml (GLEP 67)Michał Górny2016-01-241-1/+1
|
* Replace all herds with appropriate projects (GLEP 67)Michał Górny2016-01-241-1/+4
| | | | | Replace all uses of herd with appropriate project maintainers, or no maintainers in case of herds requested to be disbanded.
* Revert DOCTYPE SYSTEM https changes in metadata.xmlMike Gilbert2015-08-241-1/+1
| | | | | | | repoman does not yet accept the https version. This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450. Bug: https://bugs.gentoo.org/552720
* Use https by defaultJustin Lecher2015-08-241-1/+1
| | | | | | Convert all URLs for sites supporting encrypted connections from http to https Signed-off-by: Justin Lecher <jlec@gentoo.org>
* proj/gentoo: Initial commitRobin H. Johnson2015-08-086-0/+459
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed