aboutsummaryrefslogtreecommitdiffstats
path: root/community/nextcloud
Commit message (Collapse)AuthorAgeFilesLines
* community/nextcloud: fix subpackage -default-appsJakub Jirutka2017-06-271-1/+4
|
* community/nextcloud: move docs to separate subpackageJakub Jirutka2017-06-272-1/+79
| | | | And patch help page to use placeholder text when docs are not installed.
* community/nextcloud: replace bundled CA bundle with our ca-certificatesJakub Jirutka2017-06-271-3/+8
|
* community/nextcloud: file_sharing needs federatedfilesharingJakub Jirutka2017-06-271-2/+6
|
* community/nextcloud: move provisioning_api to base packageJakub Jirutka2017-06-271-3/+3
| | | | | | It seems that this "app" is essential, for example settings/admin/sharing doesn't work without it (changes are never saved).
* community/nextcloud: fix error in user_ldap w/ iconv ASCII//TRANSLITJakub Jirutka2017-06-262-1/+16
|
* community/nextcloud: fix installation of cron scriptJakub Jirutka2017-06-261-2/+2
|
* community/nextcloud: add missing makedep xmlstarletJakub Jirutka2017-06-261-1/+2
|
* community/nextcloud: add missing checksumJakub Jirutka2017-06-251-0/+1
|
* community/nextcloud: disable integrity check as defaultJakub Jirutka2017-06-252-0/+16
| | | | | It's unnecessary, APK ensures integrity of all installed files, and problematic (we need to patch some files).
* community/nextcloud: add cron jobJakub Jirutka2017-06-252-0/+9
|
* community/nextcloud: improve default settingsJakub Jirutka2017-06-253-3/+11
|
* community/nextcloud: remove php7-opcache from -initscript's depsJakub Jirutka2017-06-251-1/+1
| | | | | Zend OPcache is only one of multiple options, someone may want to use Memcached or Redis instead of it.
* community/nextcloud: move almost all apps to subpackagesJakub Jirutka2017-06-253-83/+106
|
* community/nextcloud: remove -doc subpackageJakub Jirutka2017-06-251-4/+1
| | | | | | This documentation is part of the application, it's referenced in the NextCloud's web interface. Moreover NextCloud has some files consistency check that doesn't like when the documentation is missing.
* community/nextcloud: remove some garbageJakub Jirutka2017-06-251-0/+8
|
* community/nextcloud: remove updater and disable messing w/ htaccessJakub Jirutka2017-06-253-1/+54
|
* community/nextcloud: move bundled apps to /usr/shareJakub Jirutka2017-06-254-16/+57
| | | | | | | | | | | | It's totally wrong to install pkg's files into /var/lib and make them writable by webserver! Moreover when Nextcloud supports multiple app paths. So we use two apps locations: * /usr/share/webapps/nextcloud/apps - for apps installed by apk, * /var/lib/nextcloud/apps - for apps installed from AppStore. BTW Fedora uses the same approach.
* community/nextcloud: install config.sampleJakub Jirutka2017-06-251-3/+5
|
* community/nextcloud: create user/group for base pkgJakub Jirutka2017-06-253-9/+9
| | | | | It somehow doesn't work when user/group is created by pre-install script of subpackage - installed files have wrong GID.
* community/nextcloud: improve abuildJakub Jirutka2017-06-222-71/+66
|
* community/nextcloud: add missing deps php7-posix and php7-ldapJakub Jirutka2017-06-221-2/+2
|
* community/nextcloud: add subpkg -initscriptJakub Jirutka2017-06-225-3/+245
|
* community/nextcloud: modernize abuildtmpfile2017-06-091-16/+16
|
* community/nextcloud: upgrade to 12.0.0Leonardo Arena2017-05-241-35/+44
| | | | | | - Move some larger apps into subpkgs in order to shrink main pkg size - Install php-fileinfo in order to suppress a warning - Cosmetic APKBUILD fixes
* community/nextcloud: fix dependenciesShiz2017-05-141-7/+7
| | | | | | | According to https://github.com/nextcloud/server/blob/v11.0.3/lib/private/DB/ConnectionFactory.php, pdo_sqlite and pdo_pgsql are very much needed for their respective databses. Furthermore, additional dependencies are detailed here: https://github.com/nextcloud/server/blob/v11.0.3/lib/private/legacy/util.php#L739
* community/nextcloud: update dependsLeonardo Arena2017-05-101-8/+6
| | | | Adapted from http://patchwork.alpinelinux.org/patch/3407/
* community/nextcloud: add logrotate supportLeonardo Arena2017-05-082-2/+11
|
* community/nextcloud: depends fixLeonardo Arena2017-05-031-3/+3
|
* community/nextcloud: upgrade to 11.0.3Leonardo Arena2017-04-241-3/+3
|
* community/nextcloud: use php7Leonardo Arena2017-04-031-2/+2
|
* community/*: move php5 and dependent pkgs from mainJakub Jirutka2017-03-283-0/+178
There two main reasons for this change: * Active support of PHP 5.x ended on January 2017, security support will end on December 2018. Packages in the main repository should be supported for at least 2 years, this means until first quarter of 2019 for the upcoming v3.6. * php7 and its extensions are currently in the community repository, so we can't use single abuild for both php5-* and php7-* packages (as we do for Python and Lua packages). This change was suggested by @vakartel, approved by @ncopa, @kaniini, and @jirutka.