pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/gitea



Module Name:    pkgsrc
Committed By:   khorben
Date:           Wed Sep  6 23:45:20 UTC 2023

Modified Files:
        pkgsrc/www/gitea: Makefile distinfo go-modules.mk
        pkgsrc/www/gitea/files: app.ini.sample

Log Message:
gitea: update to 1.18.5

There have been a few security-related fixes between 1.18.0 and this
version. (XXX pull-up to pkgsrc-2023Q2)

This also includes a trivial fix in a comment for the default app.ini
configuration file.

Changes in 1.18.5:

* ENHANCEMENTS
  * Hide 2FA status from other members in organization members list
* BUGFIXES
  * Add force_merge to merge request and fix checking mergable
  * Use --message=%s for git commit message
  * Render access log template as text instead of HTML
  * Fix the Manually Merged form
  * Use beforeCommit instead of baseCommit
  * Display attachments of review comment when comment content is blank
  * Return empty url for submodule tree entries

Changes in 1.18.4:

* SECURITY
  * Provide the ability to set password hash algorithm parameters
  * Add command to bulk set must-change-password
* ENHANCEMENTS
  * Use import of OCI structs
  * Fix color of tertiary button on dark theme
  * Link issue and pull requests status change in UI notifications
    directly to their event in the timelined view.
* BUGFIXES
  * Notify on container image create
  * Fix blame view missing lines
  * Fix incorrect role labels for migrated issues and comments
  * Fix PR file tree folders no longer collapsing
  * Escape filename when assemble URL
  * Fix isAllowed of escapeStreamer
  * Load issue before accessing index in merge message
  * Improve trace logging for pulls and processes
  * Fix restore repo bug, clarify the problem of ForeignIndex
  * Add default user visibility to cli command "admin user create"
  * Escape path for the file list
  * Fix bugs with WebAuthn preventing sign in and registration.
  * Add missing close bracket in imagediff
  * Move code comments to a standalone file and fix the bug when adding
    a reply to an outdated review appears to not post(#20821)
  * Fix line spacing for plaintext previews
  * Fix wrong hint when deleting a branch successfully from pull request
    UI
  * Fix README TOC links
  * Fix missing message in git hook when pull requests disabled on fork
  * Improve checkIfPRContentChanged
  * Prevent duplicate labels when importing more than 99
  * Don't return duplicated users who can create org repo
* BUILD
  * Upgrade golangcilint to v1.51.0
* MISC
  * Use proxy for pull mirror
  * Use --index-url in PyPi description

Changes in 1.18.3:

* SECURITY
  * Prevent multiple To recipients
* BUGFIXES
  * Truncate commit summary on repo files table.
  * Mute all links in issue timeline

Changes in 1.18.2:

* BUGFIXES
  * When updating by rebase we need to set the environment for head repo
  * Fix issue not auto-closing when it includes a reference to a branch
  * Fix invalid issue branch reference if not specified in template
  * Fix 500 error viewing pull request when fork has pull requests
    disabled
  * Reliable selection of admin user
  * Set disable_gravatar/enable_federated_avatar when offline mode is
    true
* BUILD
  * cgo cross-compile for freebsd

Changes in 1.18.1:

* API
  * Add sync_on_commit option for push mirrors api
* BUGFIXES
  * Update github.com/zeripath/zapx/v15
  * Fix pull request API field closed_at always being null
  * Fix container blob mount
  * Fix error when calculating repository size
  * Fix Operator does not exist bug on explore page with
    ONLY_SHOW_RELEVANT_REPOS
  * Fix environments for KaTeX and error reporting
  * Remove the netgo tag for Windows build
  * Fix migration from GitBucket
  * Prevent panic on looking at api "git" endpoints for empty repos
  * Fix PR status layout on mobile
  * Fix wechatwork webhook sends empty content in PR review
  * Remove duplicate "Actions" label in mobile view
  * Fix leaving organization bug on user settings -> orgs
  * Fixed colour transparency regex matching in project board sorting
  * Correctly handle select on multiple channels in Queues
  * Prepend refs/heads/ to issue template refs
  * Restore function to "Show more" buttons
  * Continue GCing other repos on error in one repo
  * Allow HOST has no port
  * Fix omit avatar_url in discord payload when empty
  * Don't display stop watch top bar icon when disabled and hidden when
    click other place
  * Don't lookup mail server when using sendmail
  * Fix gravatar disable bug
  * Fix update settings table on install
  * Fix sitemap
  * Fix code search title translation
  * Fix due date rendering the wrong date in issue
  * Fix get system setting bug when enabled redis cache
  * Fix bug of DisableGravatar default value
  * Fix key signature error page
* TESTING
  * Remove test session cache to reduce possible concurrent problem
* MISC
  * Restore previous official review when an official review is deleted
  * Log STDERR of external renderer when it fails


To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 pkgsrc/www/gitea/Makefile
cvs rdiff -u -r1.34 -r1.35 pkgsrc/www/gitea/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/gitea/go-modules.mk
cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/gitea/files/app.ini.sample

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/gitea/Makefile
diff -u pkgsrc/www/gitea/Makefile:1.92 pkgsrc/www/gitea/Makefile:1.93
--- pkgsrc/www/gitea/Makefile:1.92      Sat Aug 26 16:31:39 2023
+++ pkgsrc/www/gitea/Makefile   Wed Sep  6 23:45:20 2023
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.92 2023/08/26 16:31:39 bsiegert Exp $
+# $NetBSD: Makefile,v 1.93 2023/09/06 23:45:20 khorben Exp $
 
-DISTNAME=      gitea-1.18.0
+DISTNAME=      gitea-1.18.5
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=go-gitea/}
-PKGREVISION=   8
 CATEGORIES=    www
 GITHUB_TAG=    v${PKGVERSION_NOREV}
 

Index: pkgsrc/www/gitea/distinfo
diff -u pkgsrc/www/gitea/distinfo:1.34 pkgsrc/www/gitea/distinfo:1.35
--- pkgsrc/www/gitea/distinfo:1.34      Fri Jan  6 17:42:00 2023
+++ pkgsrc/www/gitea/distinfo   Wed Sep  6 23:45:20 2023
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.34 2023/01/06 17:42:00 jperkin Exp $
+$NetBSD: distinfo,v 1.35 2023/09/06 23:45:20 khorben Exp $
 
 BLAKE2s (bazil.org_fuse_@v_v0.0.0-20180421153158-65cc252bf669.mod) = ff8095283662ae2d2a1968bf429516c54586b1a6c4dc744657162e6781aa8ece
 SHA512 (bazil.org_fuse_@v_v0.0.0-20180421153158-65cc252bf669.mod) = 7b3ef87f98485bb9ec325680f57d43a9bd76e90bdcfb1e798458f28f7d3addf91dbb6a07b654749468860981413ad2267df2d5f3535c85579e9f79d9328d355c
@@ -252,9 +252,9 @@ Size (git.sr.ht_~mariusor_go-xsd-duratio
 BLAKE2s (gitea-1.18.0-frontend.tar.gz) = a7166d5591b9ab9046c72d278a370b0d6c4a54719805393ee529cdad4b2cae89
 SHA512 (gitea-1.18.0-frontend.tar.gz) = 5bed4af7e1309e2c2cf286d34c6e3cfb645ef048cc17dbf966134326b4eef27c75cf57c2c7972f86ccdfd8feefddb4ceeb52afa6f24014c17da54f56db426c0d
 Size (gitea-1.18.0-frontend.tar.gz) = 8766729 bytes
-BLAKE2s (gitea-1.18.0.tar.gz) = e20d66934990f5b1f82ce28edfab497cccbcbce3d7fd83ef4dbeabba43c8f32a
-SHA512 (gitea-1.18.0.tar.gz) = bc6a136804aebaa439af36cf58643b56238c26046efb2eb7fc803ef7007cf40a2bcc0f7614470d07983b5ddc9238dcfccb559f7792b56013b7159b3b8812e98b
-Size (gitea-1.18.0.tar.gz) = 11084520 bytes
+BLAKE2s (gitea-1.18.5.tar.gz) = f64863babf9e331cd8fa9431c2cebf391358ee03dd00b9f968268a78559ef4c4
+SHA512 (gitea-1.18.5.tar.gz) = e4f2dbc5a6c027d5453cb1a81880c6934973187deb92d17893e967f76c91ead83e61a9d4b5552bd55510966f5c507955bf4a6f93f1f78b8855588e80fde11bc0
+Size (gitea-1.18.5.tar.gz) = 11104255 bytes
 BLAKE2s (gitea.com_go-chi_binding_@v_v0.0.0-20221013104517-b29891619681.mod) = 51eb458bbeb0cbc60b6fd7c36a4f6d76e136fa3495fc9c93c690479bb266d460
 SHA512 (gitea.com_go-chi_binding_@v_v0.0.0-20221013104517-b29891619681.mod) = 
c7a8315434e69e8e3bd221dc2930d0043d5636a528c05b0ad4929bddb60e901b6043116bd444847c98b2783cbb40b8e53f0dcbe54ae846c0c64f611cb16252fe
 Size (gitea.com_go-chi_binding_@v_v0.0.0-20221013104517-b29891619681.mod) = 215 bytes
@@ -3420,6 +3420,18 @@ Size (github.com_onsi_gomega_@v_v1.7.1.m
 BLAKE2s (github.com_op_go-logging_@v_v0.0.0-20160315200505-970db520ece7.mod) = 8c42aa39b33862cc1e54c4857b37b94655c257ca5a5098deab7036ce4fdcf8c4
 SHA512 (github.com_op_go-logging_@v_v0.0.0-20160315200505-970db520ece7.mod) = 
76f6ad85ef60c0972b9193af3395e586b8da352614049125ea6b39ebddaed94fe3b6a5deccb8a4d33890f292795d2c44a3563fc420106bf24589a1d838f35649
 Size (github.com_op_go-logging_@v_v0.0.0-20160315200505-970db520ece7.mod) = 32 bytes
+BLAKE2s (github.com_opencontainers_go-digest_@v_v1.0.0.mod) = 04d62f69713ee3530c7d52d2b240861c9bff2d43515b6240d845fbfa3d45e284
+SHA512 (github.com_opencontainers_go-digest_@v_v1.0.0.mod) = 708918e1cabb5710f63858f35ef5bb197666b2ab8220ee48b47575b77805e44b083dc7577ad3bcf9414fd801653c21be9582086ca73fbd9c5589380a7450a400
+Size (github.com_opencontainers_go-digest_@v_v1.0.0.mod) = 52 bytes
+BLAKE2s (github.com_opencontainers_go-digest_@v_v1.0.0.zip) = 3e6ed4f7afbc558d856951bc6818b11b59a42eac853b29d036042445a20e2568
+SHA512 (github.com_opencontainers_go-digest_@v_v1.0.0.zip) = be04251b483e39b4cf503ee442344d3ac1eabcc7c41acb56c25d65ee35eea414f798f159fc168ecf5594b15b9d5349c96cb9741a6c5202cab4bfeb104353a9a1
+Size (github.com_opencontainers_go-digest_@v_v1.0.0.zip) = 34573 bytes
+BLAKE2s (github.com_opencontainers_image-spec_@v_v1.1.0-rc2.mod) = c286b11fb15c34d2fa3bd77bd1d284cc531ced374c0dcabd34d982b5979077e2
+SHA512 (github.com_opencontainers_image-spec_@v_v1.1.0-rc2.mod) = 77818d1726cef12a8cd4f05635622b92a7cb11c25710114785642cd651c6fb666bea0df6c21e9c33cc586b041c7652e1bb58c211a3d14b15f71a99c0192a5a05
+Size (github.com_opencontainers_image-spec_@v_v1.1.0-rc2.mod) = 540 bytes
+BLAKE2s (github.com_opencontainers_image-spec_@v_v1.1.0-rc2.zip) = 19a2680b0e003eed5ce66bb834f1d11495e6e475ef51f694f1e21c01216d67d4
+SHA512 (github.com_opencontainers_image-spec_@v_v1.1.0-rc2.zip) = 648174c9c8e31a1087b888b7bce8b070781c9cea1c8010383aef412adbfc422f9072e05d15d2bf33c67bedce6c7513e45ac571ef6c420fc03ba54dc3efc46c8c
+Size (github.com_opencontainers_image-spec_@v_v1.1.0-rc2.zip) = 190688 bytes
 BLAKE2s (github.com_opentracing-contrib_go-observer_@v_v0.0.0-20170622124052-a52f23424492.mod) = e79a8e022047e26edc9cf9f75946bd1bee2d106c66c905f6ec1cc1e872d72bbb
 SHA512 (github.com_opentracing-contrib_go-observer_@v_v0.0.0-20170622124052-a52f23424492.mod) = 
edf1afd7200a64b2feecdcb8f1007e58444ab9737bc0e9d4cea67cf286116fb0ebd4d9b9ae10786bf71265d9b813b175f78deb0b416346736c9a7e39d741b6c8
 Size (github.com_opentracing-contrib_go-observer_@v_v0.0.0-20170622124052-a52f23424492.mod) = 50 bytes
@@ -4332,12 +4344,12 @@ Size (github.com_yuin_goldmark_@v_v1.5.2
 BLAKE2s (github.com_zenazn_goji_@v_v0.9.0.mod) = 1bef1824e505bcb7df6923f596993cf61e3c73be2c21333e546786ab087e2a84
 SHA512 (github.com_zenazn_goji_@v_v0.9.0.mod) = bc5fbb05f2700cd680839597dfa1d5b446c6f91b1e0a08c36351d3bb338c2283a6988c6df156e9612a7dd356489281bae61ff661c9950268d23926f5ea78395f
 Size (github.com_zenazn_goji_@v_v0.9.0.mod) = 30 bytes
-BLAKE2s (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix.mod) = bf8c025efe195bdf3673db12817c68c6126fb76a8120fbf9925062f03e44ff40
-SHA512 (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix.mod) = c744f1232c4562895888e61a272f25aaa25cdfda060a3c86fd3e72d0d6fce9d13212ec5928dec9099d693f4ca07dffbada520527ecfdbb9b1a66d5374f73e1ac
-Size (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix.mod) = 619 bytes
-BLAKE2s (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix.zip) = b82f0ecab39f2fdbadeab99f3cfe54529bfc947d967d5e6ef10722d3a6a82710
-SHA512 (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix.zip) = 5b459564d2ecba47ff5d3d10aab7ea81f322d171fdc764e6d2e524671946bb1456adf566196ce843cf491e457a028ec0bfee0d6da5af8e366457f7846009fcc5
-Size (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix.zip) = 91465 bytes
+BLAKE2s (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix-2.mod) = bf8c025efe195bdf3673db12817c68c6126fb76a8120fbf9925062f03e44ff40
+SHA512 (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix-2.mod) = c744f1232c4562895888e61a272f25aaa25cdfda060a3c86fd3e72d0d6fce9d13212ec5928dec9099d693f4ca07dffbada520527ecfdbb9b1a66d5374f73e1ac
+Size (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix-2.mod) = 619 bytes
+BLAKE2s (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix-2.zip) = 7920bb2a8e83b727da4e163bd352472e4fc71e70e7ba03ac33f16cd30dd45d5a
+SHA512 (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix-2.zip) = d792ca6ab4b8f71978f0a7affd45bac24fbf6c66203274488d8865846ae660efb2ea8badfce8c37963b16cb4cfd1c7af215dd6086af42c3bc98605abd0af18dc
+Size (github.com_zeripath_zapx_v15_@v_v15.3.6-alignment-fix-2.zip) = 91643 bytes
 BLAKE2s (github.com_ziutek_mymysql_@v_v1.5.4.mod) = 63b17f68845df8ca22be500cea7836d26da0cc33079acf1e758a06a6282a7e43
 SHA512 (github.com_ziutek_mymysql_@v_v1.5.4.mod) = cd6a60a15f71d86acc64da0657180522cc0cb7a6e43428e131241bcf791a9c73d6dd8813fb8dd5b3d8e9bf99ac9264b0519c796053a7d519bf66143e1b0643ac
 Size (github.com_ziutek_mymysql_@v_v1.5.4.mod) = 33 bytes
@@ -5160,6 +5172,12 @@ Size (golang.org_x_sync_@v_v0.0.0-202102
 BLAKE2s (golang.org_x_sync_@v_v0.0.0-20220601150217-0de741cfad7f.mod) = 0524d428f3fcb8a923eb2717aacc5f3b26a68c2b9ac636b9505d1820d6b32ede
 SHA512 (golang.org_x_sync_@v_v0.0.0-20220601150217-0de741cfad7f.mod) = a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0
 Size (golang.org_x_sync_@v_v0.0.0-20220601150217-0de741cfad7f.mod) = 25 bytes
+BLAKE2s (golang.org_x_sync_@v_v0.0.0-20220819030929-7fc1605a5dde.mod) = 0524d428f3fcb8a923eb2717aacc5f3b26a68c2b9ac636b9505d1820d6b32ede
+SHA512 (golang.org_x_sync_@v_v0.0.0-20220819030929-7fc1605a5dde.mod) = a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0
+Size (golang.org_x_sync_@v_v0.0.0-20220819030929-7fc1605a5dde.mod) = 25 bytes
+BLAKE2s (golang.org_x_sync_@v_v0.0.0-20220819030929-7fc1605a5dde.zip) = 21f29602d90de12874e8cbeb7201753d64299c1efcf466b49425711fc1e06125
+SHA512 (golang.org_x_sync_@v_v0.0.0-20220819030929-7fc1605a5dde.zip) = e389ee9b2d62317ef13d9b9595c432ee1d1de5f5a15365c5ae6e01da529936779b3b08c52106faf83fdd36cd894f499311587a746a00592b702f0149c3eab3e0
+Size (golang.org_x_sync_@v_v0.0.0-20220819030929-7fc1605a5dde.zip) = 29012 bytes
 BLAKE2s (golang.org_x_sys_@v_v0.0.0-20180823144017-11551d06cbcc.mod) = aa44bc87b37c614a717cf692f23966b8babf30a09e6039a89eb6cc5b2943af87
 SHA512 (golang.org_x_sys_@v_v0.0.0-20180823144017-11551d06cbcc.mod) = ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c
 Size (golang.org_x_sys_@v_v0.0.0-20180823144017-11551d06cbcc.mod) = 24 bytes

Index: pkgsrc/www/gitea/go-modules.mk
diff -u pkgsrc/www/gitea/go-modules.mk:1.3 pkgsrc/www/gitea/go-modules.mk:1.4
--- pkgsrc/www/gitea/go-modules.mk:1.3  Fri Jan  6 17:42:00 2023
+++ pkgsrc/www/gitea/go-modules.mk      Wed Sep  6 23:45:20 2023
@@ -1,4 +1,4 @@
-# $NetBSD: go-modules.mk,v 1.3 2023/01/06 17:42:00 jperkin Exp $
+# $NetBSD: go-modules.mk,v 1.4 2023/09/06 23:45:20 khorben Exp $
 
 GO_MODULE_FILES+=      bazil.org/fuse/@v/v0.0.0-20180421153158-65cc252bf669.mod
 GO_MODULE_FILES+=      bitbucket.org/creachadair/shell/@v/v0.0.6.mod
@@ -1138,6 +1138,10 @@ GO_MODULE_FILES+=        github.com/onsi/gomega
 GO_MODULE_FILES+=      github.com/onsi/gomega/@v/v1.5.0.mod
 GO_MODULE_FILES+=      github.com/onsi/gomega/@v/v1.7.1.mod
 GO_MODULE_FILES+=      github.com/op/go-logging/@v/v0.0.0-20160315200505-970db520ece7.mod
+GO_MODULE_FILES+=      github.com/opencontainers/go-digest/@v/v1.0.0.mod
+GO_MODULE_FILES+=      github.com/opencontainers/go-digest/@v/v1.0.0.zip
+GO_MODULE_FILES+=      github.com/opencontainers/image-spec/@v/v1.1.0-rc2.mod
+GO_MODULE_FILES+=      github.com/opencontainers/image-spec/@v/v1.1.0-rc2.zip
 GO_MODULE_FILES+=      github.com/opentracing-contrib/go-observer/@v/v0.0.0-20170622124052-a52f23424492.mod
 GO_MODULE_FILES+=      github.com/opentracing/basictracer-go/@v/v1.0.0.mod
 GO_MODULE_FILES+=      github.com/opentracing/opentracing-go/@v/v1.0.2.mod
@@ -1442,8 +1446,8 @@ GO_MODULE_FILES+= github.com/yuin/goldma
 GO_MODULE_FILES+=      github.com/yuin/goldmark/@v/v1.5.2.mod
 GO_MODULE_FILES+=      github.com/yuin/goldmark/@v/v1.5.2.zip
 GO_MODULE_FILES+=      github.com/zenazn/goji/@v/v0.9.0.mod
-GO_MODULE_FILES+=      github.com/zeripath/zapx/v15/@v/v15.3.6-alignment-fix.mod
-GO_MODULE_FILES+=      github.com/zeripath/zapx/v15/@v/v15.3.6-alignment-fix.zip
+GO_MODULE_FILES+=      github.com/zeripath/zapx/v15/@v/v15.3.6-alignment-fix-2.mod
+GO_MODULE_FILES+=      github.com/zeripath/zapx/v15/@v/v15.3.6-alignment-fix-2.zip
 GO_MODULE_FILES+=      github.com/ziutek/mymysql/@v/v1.5.4.mod
 GO_MODULE_FILES+=      github.com/zmap/rc2/@v/v0.0.0-20131011165748-24b9757f5521.mod
 GO_MODULE_FILES+=      github.com/zmap/zcertificate/@v/v0.0.0-20180516150559-0e3d58b1bac4.mod
@@ -1718,6 +1722,8 @@ GO_MODULE_FILES+= golang.org/x/sync/@v/v
 GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20201207232520-09787c993a3a.mod
 GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20210220032951-036812b2e83c.mod
 GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20220601150217-0de741cfad7f.mod
+GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20220819030929-7fc1605a5dde.mod
+GO_MODULE_FILES+=      golang.org/x/sync/@v/v0.0.0-20220819030929-7fc1605a5dde.zip
 GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20180823144017-11551d06cbcc.mod
 GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20180830151530-49385e6e1522.mod
 GO_MODULE_FILES+=      golang.org/x/sys/@v/v0.0.0-20180905080454-ebe1bf3edb33.mod

Index: pkgsrc/www/gitea/files/app.ini.sample
diff -u pkgsrc/www/gitea/files/app.ini.sample:1.2 pkgsrc/www/gitea/files/app.ini.sample:1.3
--- pkgsrc/www/gitea/files/app.ini.sample:1.2   Thu Nov 18 02:45:29 2021
+++ pkgsrc/www/gitea/files/app.ini.sample       Wed Sep  6 23:45:20 2023
@@ -17,7 +17,7 @@
 # localhost.
 #
 # If you'd rather use the web-based installer, remove this conf/app.ini file
-# and make @PKG_SYSCONFDIR@/gitea/conf writeable to the @GITEA_USER@ user.
+# and make @PKG_SYSCONFDIR@/conf writeable to the @GITEA_USER@ user.
 
 APP_NAME = Gitea: Git with a cup of tea
 RUN_USER = @GITEA_USER@



Home | Main Index | Thread Index | Old Index