all the things

This commit is contained in:
c0dev0id
2023-01-10 11:45:28 +01:00
parent f3db1ea486
commit 7a9bbf0168
143 changed files with 15515 additions and 0 deletions

55
www/forgejo/Makefile Normal file
View File

@@ -0,0 +1,55 @@
COMMENT = compact self-hosted Git service
VERSION = 1.18.0-1
DISTNAME = v${VERSION}
PKGNAME = forgejo-${VERSION}
MASTER_SITES = https://codeberg.org/forgejo/forgejo/archive/
CATEGORIES = www devel
HOMEPAGE = https://forgejo.org
MAINTAINER = Stefan Hagen <sh+ports@codevoid.de>
# MIT
PERMIT_PACKAGE = Yes
WANTLIB += c pthread
MODULES = lang/go
GO_TAGS = sqlite sqlite_unlock_notify
MODGO_FLAGS += -tags "${GO_TAGS}"
MODGO_LDFLAGS += -X code.forgejo.io/forgejo/modules/setting.AppWorkPath=${LOCALBASE}/share/forgejo
MODGO_LDFLAGS += -X code.forgejo.io/forgejo/modules/setting.CustomConf=${SYSCONFDIR}/forgejo/app.ini
MODGO_LDFLAGS += -X code.forgejo.io/forgejo/modules/setting.CustomPath=${LOCALSTATEDIR}/forgejo/custom
MODGO_LDFLAGS += -X code.forgejo.io/forgejo/modules/setting.StaticRootPath=${LOCALBASE}/share/forgejo
MODGO_LDFLAGS += -X main.Version=${VERSION}
MODGO_LDFLAGS += -X 'main.Tags=${GO_TAGS}'
RUN_DEPENDS = devel/git \
shells/bash
ALL_TARGET = code.forgejo.io/forgejo
WRKSRC = ${MODGO_WORKSPACE}/forgejo/${ALL_TARGET}
SUBST_VARS = VARBASE
pre-configure:
${SUBST_CMD} ${WRKDIST}/custom/conf/app.example.ini
do-install:
${INSTALL_PROGRAM} ${MODGO_WORKSPACE}/bin/forgejo ${PREFIX}/sbin
${INSTALL_DATA_DIR} ${PREFIX}/share/forgejo
.for _d in custom/conf options templates
cp -Rp ${WRKSRC}/${_d} ${PREFIX}/share/forgejo
.endfor
${INSTALL_DATA_DIR} ${WRKINST}${VARBASE}/www/forgejo
cp -Rp ${WRKSRC}/public ${WRKINST}${VARBASE}/www/forgejo
ln -s ${VARBASE}/www/forgejo/public ${PREFIX}/share/forgejo/public
post-install:
@find ${WRKINST}/ -type f \
\( -name '*.beforesubst' -o -name '*${PATCHORIG}' \) -delete
.include <bsd.port.mk>

2
www/forgejo/distinfo Normal file
View File

@@ -0,0 +1,2 @@
SHA256 (v1.18.0-1.tar.gz) = DDHPbViH9KHGh8aLEdN4XY1Y0rCrbMvQxHx++UPLuwM=
SIZE (v1.18.0-1.tar.gz) = 11052348

View File

@@ -0,0 +1,3 @@
/patch-custom_conf_app_example_ini/1.11/Fri Aug 19 18:20:10 2022//
/patch-go_syscalls/1.1/Mon Aug 8 20:56:06 2022//
D

View File

@@ -0,0 +1 @@
ports/www/forgejo/patches

View File

@@ -0,0 +1 @@
sdk@cvs.openbsd.org:/cvs

View File

@@ -0,0 +1,508 @@
Index: custom/conf/app.example.ini
--- custom/conf/app.example.ini.orig
+++ custom/conf/app.example.ini
@@ -15,7 +15,7 @@
APP_NAME = ; Gitea: Git with a cup of tea
;;
;; RUN_USER will automatically detect the current user - but you can set it here change it if you run locally
-RUN_USER = ; git
+RUN_USER = _forgejo
;;
;; Application run mode, affects performance and debugging. Either "dev", "prod" or "test", default is "prod"
RUN_MODE = ; prod
@@ -95,7 +95,7 @@ RUN_MODE = ; prod
;SSH_LISTEN_HOST =
;;
;; Port number to be exposed in clone URL
-;SSH_PORT = 22
+SSH_PORT =
;;
;; The port number the builtin SSH server should listen on
;SSH_LISTEN_PORT = %(SSH_PORT)s
@@ -224,7 +224,7 @@ RUN_MODE = ; prod
;STATIC_ROOT_PATH =
;;
;; Default path for App data
-;APP_DATA_PATH = data
+APP_DATA_PATH = ${LOCALSTATEDIR}/forgejo/data
;;
;; Enable gzip compression for runtime-generated content, static resources excluded
;ENABLE_GZIP = false
@@ -235,7 +235,7 @@ RUN_MODE = ; prod
;ENABLE_PPROF = false
;;
;; PPROF_DATA_PATH, use an absolute path when you start forgejo as service
-;PPROF_DATA_PATH = data/tmp/pprof
+PPROF_DATA_PATH = ${LOCALSTATEDIR}/forgejo/data/tmp/pprof
;;
;; Landing page, can be "home", "explore", "organizations", "login", or any URL such as "/org/repo" or even "https://anotherwebsite.com"
;; The "login" choice is not a security measure but just a UI flow change, use REQUIRE_SIGNIN_VIEW to force users to log in.
@@ -284,10 +284,10 @@ LFS_JWT_SECRET =
;;
;; MySQL Configuration
;;
-DB_TYPE = mysql
-HOST = 127.0.0.1:3306 ; can use socket e.g. /var/run/mysqld/mysqld.sock
-NAME = forgejo
-USER = root
+;DB_TYPE = mysql
+;HOST = 127.0.0.1:3306 ; can use socket e.g. /var/run/mysqld/mysqld.sock
+;NAME = forgejo
+;USER = root
;PASSWD = ;Use PASSWD = `your password` for quoting if you use special characters in the password.
;SSL_MODE = false ; either "false" (default), "true", or "skip-verify"
;CHARSET = utf8mb4 ;either "utf8" or "utf8mb4", default is "utf8mb4".
@@ -299,9 +299,9 @@ USER = root
;; Postgres Configuration
;;
;DB_TYPE = postgres
-;HOST = 127.0.0.1:5432 ; can use socket e.g. /var/run/postgresql/
+;HOST = /tmp
;NAME = forgejo
-;USER = root
+;USER = %(RUN_USER)s
;PASSWD =
;SCHEMA =
;SSL_MODE=disable ;either "disable" (default), "require", or "verify-full"
@@ -310,8 +310,8 @@ USER = root
;;
;; SQLite Configuration
;;
-;DB_TYPE = sqlite3
-;PATH= ; defaults to data/forgejo.db
+DB_TYPE = sqlite3
+PATH = ${LOCALSTATEDIR}/forgejo/data/forgejo.db
;SQLITE_TIMEOUT = ; Query timeout defaults to: 500
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -362,7 +362,7 @@ INSTALL_LOCK = false
SECRET_KEY =
;;
;; Secret used to validate communication within Gitea binary.
-INTERNAL_TOKEN=
+INTERNAL_TOKEN =
;;
;; Instead of defining internal token in the configuration, this configuration option can be used to give Gitea a path to a file that contains the internal token (example value: file:/etc/forgejo/internal_token)
;INTERNAL_TOKEN_URI = ;e.g. /etc/forgejo/internal_token
@@ -397,7 +397,7 @@ INTERNAL_TOKEN=
;; This enables the users to access and modify this config file and the Gitea database and interrupt the Gitea service.
;; By modifying the Gitea database, users can gain Gitea administrator privileges.
;; It also enables them to access other resources available to the user on the operating system that is running the Gitea instance and perform arbitrary actions in the name of the Gitea OS user.
-;; WARNING: This maybe harmful to you website or your operating system.
+;; WARNING: This maybe harmful to your website or your operating system.
;; WARNING: Setting this to true does not change existing hooks in git repos; adjust it before if necessary.
;DISABLE_GIT_HOOKS = true
;;
@@ -457,7 +457,7 @@ ENABLE = true
;; Private key file path used to sign OAuth2 tokens. The path is relative to APP_DATA_PATH.
;; This setting is only needed if JWT_SIGNING_ALGORITHM is set to RS256, RS384, RS512, ES256, ES384 or ES512.
;; The file must contain a RSA or ECDSA private key in the PKCS8 format. If no key exists a 4096 bit key will be created for you.
-;JWT_SIGNING_PRIVATE_KEY_FILE = jwt/private.pem
+JWT_SIGNING_PRIVATE_KEY_FILE = ${LOCALSTATEDIR}/forgejo/jwt/private.pem
;;
;; OAuth2 authentication secret for access and refresh tokens, change this yourself to a unique string. CLI generate option is helpful in this case. https://docs.forgejo.io/en-us/command-line/#generate
;; This setting is only needed if JWT_SIGNING_ALGORITHM is set to HS256, HS384 or HS512.
@@ -477,7 +477,7 @@ ENABLE = true
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-[U2F]
+;[U2F]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
@@ -486,7 +486,7 @@ ENABLE = true
;; https://developers.yubico.com/U2F/App_ID.html
;;
;; DEPRECATED - this only applies to previously registered security keys using the U2F standard
-APP_ID = ; e.g. http://localhost:3000/
+;APP_ID = ; e.g. http://localhost:3000/
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -495,14 +495,14 @@ APP_ID = ; e.g. http://localhost:3000/
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Root path for the log files - defaults to %(GITEA_WORK_DIR)/log
-;ROOT_PATH =
+ROOT_PATH = ${LOCALSTATEDIR}/log/forgejo
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Main Logger
;;
;; Either "console", "file", "conn", "smtp" or "database", default is "console"
;; Use comma to separate multiple modes, e.g. "console, file"
-MODE = console
+MODE = file
;;
;; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical" or "None", default is "Info"
LEVEL = Info
@@ -683,7 +683,7 @@ ROUTER = console
;EMAIL_DOMAIN_BLOCKLIST =
;;
;; Disallow registration, only allow admins to create accounts.
-;DISABLE_REGISTRATION = false
+DISABLE_REGISTRATION = true
;;
;; Allow registration only using forgejo itself, it works only when DISABLE_REGISTRATION is false
;ALLOW_ONLY_INTERNAL_REGISTRATION = false
@@ -692,7 +692,7 @@ ROUTER = console
;ALLOW_ONLY_EXTERNAL_REGISTRATION = false
;;
;; User must sign in to view anything.
-;REQUIRE_SIGNIN_VIEW = false
+REQUIRE_SIGNIN_VIEW = true
;;
;; Mail notification
;ENABLE_NOTIFY_MAIL = false
@@ -727,11 +727,11 @@ ROUTER = console
;;
;; Default value for KeepEmailPrivate
;; Each new user will get the value of this setting copied into their profile
-;DEFAULT_KEEP_EMAIL_PRIVATE = false
+DEFAULT_KEEP_EMAIL_PRIVATE = true
;;
;; Default value for AllowCreateOrganization
;; Every new user will have rights set to create organizations depending on this setting
-;DEFAULT_ALLOW_CREATE_ORGANIZATION = true
+DEFAULT_ALLOW_CREATE_ORGANIZATION = false
;; Default value for IsRestricted
;; Every new user will have restricted permissions depending on this setting
;DEFAULT_USER_IS_RESTRICTED = false
@@ -740,7 +740,7 @@ ROUTER = console
;; Limited is for users visible only to signed users
;; Private is for users visible only to members of their organizations
;; Public is for users visible for everyone
-;DEFAULT_USER_VISIBILITY = public
+DEFAULT_USER_VISIBILITY = private
;;
;; Set which visibility modes a user can have
;ALLOWED_USER_VISIBILITY_MODES = public,limited,private
@@ -749,7 +749,7 @@ ROUTER = console
;; Limited is for organizations visible only to signed users
;; Private is for organizations visible only to members of the organization
;; Public is for organizations visible to everyone
-;DEFAULT_ORG_VISIBILITY = public
+DEFAULT_ORG_VISIBILITY = private
;;
;; Default value for DefaultOrgMemberVisible
;; True will make the membership of the users visible when added to the organisation
@@ -818,10 +818,10 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Root path for storing all repository data. By default, it is set to %(APP_DATA_PATH)/forgejo-repositories.
;; A relative path is interpreted as %(GITEA_WORK_DIR)/%(ROOT)
-;ROOT =
+ROOT = ${LOCALSTATEDIR}/forgejo/forgejo-repositories
;;
;; The script type this server supports. Usually this is `bash`, but some users report that only `sh` is available.
-;SCRIPT_TYPE = bash
+SCRIPT_TYPE = sh
;;
;; DETECTED_CHARSETS_ORDER tie-break order for detected charsets.
;; If the charsets have equal confidence, tie-breaking will be done by order in this list
@@ -836,7 +836,7 @@ ROUTER = console
;FORCE_PRIVATE = false
;;
;; Default privacy setting when creating a new repository, allowed values: last, private, public. Default is last which means the last setting used.
-;DEFAULT_PRIVATE = last
+DEFAULT_PRIVATE = private
;;
;; Default private when using push-to-create
;DEFAULT_PUSH_CREATE_PRIVATE = true
@@ -852,7 +852,7 @@ ROUTER = console
;;
;; Preferred Licenses to place at the top of the List
;; The name here must match the filename in options/license or custom/options/license
-;PREFERRED_LICENSES = Apache License 2.0,MIT License
+PREFERRED_LICENSES = BSD-2-Clause,ISC ; Apache License 2.0,MIT License
;;
;; Disable the ability to interact with repositories using the HTTP protocol
;DISABLE_HTTP_GIT = false
@@ -911,16 +911,16 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[repository.local]
+[repository.local]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Path for local repository copy. Defaults to `tmp/local-repo` (content gets deleted on forgejo restart)
-;LOCAL_COPY_PATH = tmp/local-repo
+LOCAL_COPY_PATH = ${LOCALSTATEDIR}/forgejo/tmp/local-repo
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[repository.upload]
+[repository.upload]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
@@ -928,7 +928,7 @@ ROUTER = console
;ENABLED = true
;;
;; Path for uploads. Defaults to `data/tmp/uploads` (content gets deleted on forgejo restart)
-;TEMP_PATH = data/tmp/uploads
+TEMP_PATH = ${LOCALSTATEDIR}/forgejo/data/tmp/uploads
;;
;; Comma-separated list of allowed file extensions (`.zip`), mime types (`text/plain`) or wildcard type (`image/*`, `audio/*`, `video/*`). Empty value or `*/*` allows all types.
;ALLOWED_TYPES =
@@ -1087,7 +1087,7 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[ui]
+[ui]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
@@ -1118,7 +1118,7 @@ ROUTER = console
;MAX_DISPLAY_FILE_SIZE = 8388608
;;
;; Whether the email of the user should be shown in the Explore Users page
-;SHOW_USER_EMAIL = true
+SHOW_USER_EMAIL = false
;;
;; Set the default theme for the Gitea install
;DEFAULT_THEME = auto
@@ -1253,7 +1253,7 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[indexer]
+[indexer]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
@@ -1264,7 +1264,7 @@ ROUTER = console
;ISSUE_INDEXER_TYPE = bleve
;;
;; Issue indexer storage path, available when ISSUE_INDEXER_TYPE is bleve
-;ISSUE_INDEXER_PATH = indexers/issues.bleve
+ISSUE_INDEXER_PATH = ${LOCALSTATEDIR}/forgejo/indexers/issues.bleve
;;
;; Issue indexer connection string, available when ISSUE_INDEXER_TYPE is elasticsearch
;ISSUE_INDEXER_CONN_STR = http://elastic:changeme@localhost:9200
@@ -1282,7 +1282,7 @@ ROUTER = console
;; When ISSUE_INDEXER_QUEUE_TYPE is levelqueue, this will be the path where the queue will be saved.
;; This can be overridden by `ISSUE_INDEXER_QUEUE_CONN_STR`.
;; default is queues/common
-;ISSUE_INDEXER_QUEUE_DIR = queues/common; **DEPRECATED** use settings in `[queue.issue_indexer]`.
+ISSUE_INDEXER_QUEUE_DIR = ${LOCALSTATEDIR}/forgejo/indexers/issues.queue; **DEPRECATED** use settings in `[queue.issue_indexer]`.
;;
;; When `ISSUE_INDEXER_QUEUE_TYPE` is `redis`, this will store the redis connection string.
;; When `ISSUE_INDEXER_QUEUE_TYPE` is `levelqueue`, this is a directory or additional options of
@@ -1303,7 +1303,7 @@ ROUTER = console
;REPO_INDEXER_TYPE = bleve
;;
;; Index file used for code search. available when `REPO_INDEXER_TYPE` is bleve
-;REPO_INDEXER_PATH = indexers/repos.bleve
+REPO_INDEXER_PATH = ${LOCALSTATEDIR}/forgejo/indexers/repos.bleve
;;
;; Code indexer connection string, available when `REPO_INDEXER_TYPE` is elasticsearch. i.e. http://elastic:changeme@localhost:9200
;REPO_INDEXER_CONN_STR =
@@ -1383,19 +1383,19 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[admin]
+[admin]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Disallow regular (non-admin) users from creating organizations.
-;DISABLE_REGULAR_ORG_CREATION = false
+DISABLE_REGULAR_ORG_CREATION = true
;;
;; Default configuration for email notifications for users (user configurable). Options: enabled, onmention, disabled
;DEFAULT_EMAIL_NOTIFICATIONS = enabled
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[openid]
+[openid]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
@@ -1416,7 +1416,7 @@ ROUTER = console
;; - <username>.livejournal.com
;;
;; Whether to allow signin in via OpenID
-;ENABLE_OPENID_SIGNIN = true
+ENABLE_OPENID_SIGNIN = false
;;
;; Whether to allow registering via OpenID
;; Do not include to rely on rhw DISABLE_REGISTRATION setting
@@ -1501,7 +1501,7 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[mailer]
+[mailer]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
@@ -1518,7 +1518,7 @@ ROUTER = console
;; QQ: smtp.qq.com:465
;; As per RFC 8314 using Implicit TLS/SMTPS on port 465 (if supported) is recommended,
;; otherwise STARTTLS on port 587 should be used.
-;HOST =
+HOST = localhost:25
;;
;; Disable HELO operation when hostnames are different.
;DISABLE_HELO =
@@ -1531,15 +1531,15 @@ ROUTER = console
;;
;; Use client certificate
;USE_CERTIFICATE = false
-;CERT_FILE = custom/mailer/cert.pem
-;KEY_FILE = custom/mailer/key.pem
+CERT_FILE = ${LOCALSTATEDIR}/forgejo/custom/mailer/cert.pem
+KEY_FILE = ${LOCALSTATEDIR}/forgejo/custom/mailer/key.pem
;;
;; Should SMTP connect with TLS, (if port ends with 465 TLS will always be used.)
;; If this is false but STARTTLS is supported the connection will be upgraded to TLS opportunistically.
;IS_TLS_ENABLED = false
;;
;; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
-;FROM =
+FROM = forgejo@%(DOMAIN)s
;;
;; Sometimes it is helpful to use a different address on the envelope. Set this to use ENVELOPE_FROM as the from on the envelope. Set to `<>` to send an empty address.
;ENVELOPE_FROM =
@@ -1552,13 +1552,13 @@ ROUTER = console
;PASSWD =
;;
;; Send mails as plain text
-;SEND_AS_PLAIN_TEXT = false
+SEND_AS_PLAIN_TEXT = true
;;
;; Set Mailer Type (either SMTP, sendmail or dummy to just send to the log)
;MAILER_TYPE = smtp
;;
;; Specify an alternative sendmail binary
-;SENDMAIL_PATH = sendmail
+SENDMAIL_PATH = /usr/sbin/sendmail
;;
;; Specify any extra sendmail arguments
;; WARNING: if your sendmail program interprets options you should set this to "--" or terminate these args with "--"
@@ -1614,20 +1614,20 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[session]
+[session]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Either "memory", "file", "redis", "db", "mysql", "couchbase", "memcache" or "postgres"
;; Default is "memory". "db" will reuse the configuration in [database]
-;PROVIDER = memory
+PROVIDER = file
;;
;; Provider config options
;; memory: doesn't have any config yet
;; file: session file path, e.g. `data/sessions`
;; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
;; mysql: go-sql-driver/mysql dsn config string, e.g. `root:password@/session_table`
-;PROVIDER_CONFIG = data/sessions
+PROVIDER_CONFIG = ${LOCALSTATEDIR}/forgejo/data/sessions
;;
;; Session cookie name
;COOKIE_NAME = i_like_forgejo
@@ -1646,12 +1646,12 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[picture]
+[picture]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
-;AVATAR_UPLOAD_PATH = data/avatars
-;REPOSITORY_AVATAR_UPLOAD_PATH = data/repo-avatars
+AVATAR_UPLOAD_PATH = ${LOCALSTATEDIR}/forgejo/data/avatars
+REPOSITORY_AVATAR_UPLOAD_PATH = ${LOCALSTATEDIR}/forgejo/data/repo-avatars
;;
;; How Gitea deals with missing repository avatars
;; none = no avatar will be displayed; random = random avatar will be displayed; image = default image will be used
@@ -1676,7 +1676,7 @@ ROUTER = console
;GRAVATAR_SOURCE = gravatar
;;
;; This value will always be true in offline mode.
-;DISABLE_GRAVATAR = false
+DISABLE_GRAVATAR = true
;;
;; Federated avatar lookup uses DNS to discover avatar associated
;; with emails, see https://www.libravatar.org
@@ -1685,7 +1685,7 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[attachment]
+[attachment]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
@@ -1710,7 +1710,7 @@ ROUTER = console
;SERVE_DIRECT = false
;;
;; Path for attachments. Defaults to `data/attachments` only available when STORAGE_TYPE is `local`
-;PATH = data/attachments
+PATH = ${LOCALSTATEDIR}/forgejo/data/attachments
;;
;; Minio endpoint to connect only available when STORAGE_TYPE is `minio`
;MINIO_ENDPOINT = localhost:9000
@@ -1735,14 +1735,14 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[time]
+[time]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Specifies the format for fully outputted dates. Defaults to RFC1123
;; Special supported values are ANSIC, UnixDate, RubyDate, RFC822, RFC822Z, RFC850, RFC1123, RFC1123Z, RFC3339, RFC3339Nano, Kitchen, Stamp, StampMilli, StampMicro and StampNano
;; For more information about the format see http://golang.org/pkg/time/#pkg-constants
-;FORMAT =
+FORMAT = RFC1123Z
;;
;; Location the UI time display i.e. Asia/Shanghai
;; Empty means server's location setting
@@ -2143,14 +2143,14 @@ ROUTER = console
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;[other]
+[other]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;SHOW_FOOTER_BRANDING = false
;; Show version information about Gitea and Go in the footer
-;SHOW_FOOTER_VERSION = true
+SHOW_FOOTER_VERSION = false
;; Show template execution time in the footer
-;SHOW_FOOTER_TEMPLATE_LOAD_TIME = true
+SHOW_FOOTER_TEMPLATE_LOAD_TIME = false
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -2268,7 +2268,7 @@ ROUTER = console
;ENABLED = true
;;
;; Path for chunked uploads. Defaults to APP_DATA_PATH + `tmp/package-upload`
-;CHUNKED_UPLOAD_PATH = tmp/package-upload
+CHUNKED_UPLOAD_PATH = ${LOCALSTATEDIR}/forgejo/data/tmp/package-upload
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -2298,7 +2298,7 @@ ROUTER = console
;STORAGE_TYPE = local
;;
;; Where your lfs files reside, default is data/lfs.
-;PATH = data/lfs
+;PATH = ${LOCALSTATEDIR}/forgejo/data/lfs
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,6 @@
/DESCR/1.2/Wed Jan 17 21:05:38 2018//
/MESSAGE/1.2/Sun Feb 28 17:21:40 2021//
/PLIST/1.28/Tue Nov 8 11:17:16 2022//
/forgejo.rc/1.7/Sun Mar 6 11:05:26 2022//
/README/1.6/Sat Jan 7 17:31:01 2023//
D

View File

@@ -0,0 +1 @@
ports/www/forgejo/pkg

1
www/forgejo/pkg/CVS/Root Normal file
View File

@@ -0,0 +1 @@
sdk@cvs.openbsd.org:/cvs

2
www/forgejo/pkg/DESCR Normal file
View File

@@ -0,0 +1,2 @@
Gitea - Git with a cup of tea is a painless self-hosted Git service comparable
to Github, Bitbucket or Gitlab.

16
www/forgejo/pkg/MESSAGE Normal file
View File

@@ -0,0 +1,16 @@
If you are upgrading from ${PKGSTEM}-<1.7.0, update _forgejo user's shell and
home directory:
# usermod -s /bin/sh _forgejo
# usermod -d /var/forgejo _forgejo
If you are upgrading from ${PKGSTEM}-<1.7.1, please note the following changes:
* Configuration file location has changed from ${SYSCONFDIR}/${PKGSTEM}/conf/app.ini
to ${SYSCONFDIR}/${PKGSTEM}/app.ini
* GITEA_CUSTOM directory location has changed from ${SYSCONFDIR}/${PKGSTEM}
to ${LOCALSTATEDIR}/${PKGSTEM}/custom
* Default ROOT_PATH for logs has changed from ${LOCALSTATEDIR}/${PKGSTEM}/log
to ${LOCALSTATEDIR}/log/${PKGSTEM}

2194
www/forgejo/pkg/PLIST Normal file

File diff suppressed because it is too large Load Diff

2195
www/forgejo/pkg/PLIST.orig Normal file

File diff suppressed because it is too large Load Diff

61
www/forgejo/pkg/README Normal file
View File

@@ -0,0 +1,61 @@
+-----------------------------------------------------------------------
| Running ${PKGSTEM} on OpenBSD
+-----------------------------------------------------------------------
Initial configuration
=====================
By default forgejo listens on all configured IP addresses, TCP port 3000.
If this is not wanted behavior, either adjust your pf(4) rules or change
HTTP_ADDR/HTTP_PORT in ${SYSCONFDIR}/forgejo/app.ini.
To complete the initial configuration, point your browser to
http://forgejo.example.com:3000 and press "Sign In". Usually you'll need to
configure SSH Server Domain/Port, Gitea HTTP Listen Port/Base URL, E-Mail
Settings and Administrator Account Settings.
On OpenBSD, initial forgejo configuration has the following restrictions:
- Self-Registration is disabled
- Sign-In is required to view the content
- E-Mail addresses are not shown
- Server runs in "offline" mode, which means that external services such as
Gravatar/OpenID are not used
- New repositories have "private" checkbox checked by default
- Password hash algorithm changed from pbkdf2 to argon2
Adjust these configuration settings according to your requirements.
Configuring HTTP access
=======================
By default forgejo serves HTTP requests on its own.
It can also be configured to run behind HTTP proxy like relayd(8) or nginx(8).
Another option is to let OpenBSD httpd(8) serve HTTP(S) requests and pass it
to forgejo via FastCGI protocol:
Example configuration for httpd(8) and forgejo communicating via FastCGI
----------------------------------------------------------------------
Relevant configuration directives in ${SYSCONFDIR}/httpd.conf:
# An HTTPS server using SSL/TLS
server "forgejo.example.com" {
listen on $ext_addr tls port 443
tls certificate "/etc/ssl/forgejo.example.com.pem"
tls key "/etc/ssl/private/forgejo.example.com.key"
location "*" { fastcgi socket "/run/forgejo/forgejo.sock" }
}
Relevant configuration directives in ${SYSCONFDIR}/forgejo/app.ini:
[server]
PROTOCOL = fcgi+unix
DOMAIN = forgejo.example.com
ROOT_URL = https://%(DOMAIN)s/
HTTP_ADDR = /var/www/run/forgejo/forgejo.sock
LOCAL_ROOT_URL = %(ROOT_URL)s
Customizing forgejo
=================
For custom public files, templates, gitignores, labels, licenses and READMEs,
please use ${LOCALSTATEDIR}/forgejo/custom directory.

11
www/forgejo/pkg/gitea.rc Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/ksh
daemon="${TRUEPREFIX}/sbin/forgejo"
daemon_user="_forgejo"
. /etc/rc.d/rc.subr
rc_bg=YES
rc_reload=NO
rc_cmd $1

59
www/luakit/Makefile Normal file
View File

@@ -0,0 +1,59 @@
# $OpenBSD: Makefile,v 1.26 2020/09/15 07:04:25 pamela Exp $
COMMENT = fast, small, webkit based browser written in lua
GH_ACCOUNT = luakit
GH_PROJECT = luakit
GH_TAGNAME = 2.2.1
EPOCH = 1
CATEGORIES = www
MAINTAINER = Stefan Hagen <sh+ports@codevoid.de>
HOMEPAGE = https://luakit.github.io
# GPLv3
PERMIT_PACKAGE = Yes
USE_GMAKE = Yes
COMPILER = base-clang ports-gcc
WANTLIB += atk-1.0 c cairo cairo-gobject gdk-3 gdk_pixbuf-2.0
WANTLIB += gio-2.0 glib-2.0 gobject-2.0 gthread-2.0 gtk-3 harfbuzz
WANTLIB += intl javascriptcoregtk-4.0 luajit-5.1 pango-1.0
WANTLIB += pangocairo-1.0 pthread soup-2.4 sqlite3 webkit2gtk-4.0
MODULES = lang/lua
BUILD_DEPENDS = devel/help2man \
devel/luafs
RUN_DEPENDS = devel/desktop-file-utils \
devel/luafs \
textproc/lua-markdown
LIB_DEPENDS = lang/luajit \
www/webkitgtk4
TEST_DEPENDS = devel/luassert \
devel/luacheck
TEST_TARGET = run-tests
# webkit browsing
RUN_DEPENDS += multimedia/gstreamer1/plugins-good \
multimedia/gstreamer1/plugins-libav
MAKE_FLAGS += LUA_BIN_NAME=${MODLUA_BIN} \
XDGPREFIX=${PREFIX}/share/examples \
DOCDIR=${PREFIX}/share/doc/luakit \
MANPREFIX=${PREFIX}/man \
PIXMAPDIR=${PREFIX}/share/pixmaps/ \
APPDIR=${PREFIX}/share/applications/ \
PREFIX=${PREFIX} \
DEVELOPMENT_PATHS=0
.include <bsd.port.mk>

2
www/luakit/distinfo Normal file
View File

@@ -0,0 +1,2 @@
SHA256 (luakit-2.2.1.tar.gz) = 81NZ9YY/q+K51Cb00+9tKc5bs7rHtMjggkJC+JhoyA4=
SIZE (luakit-2.2.1.tar.gz) = 488845

View File

@@ -0,0 +1,39 @@
$OpenBSD: patch-Makefile,v 1.4 2019/02/09 17:55:27 abieber Exp $
Index: Makefile
--- Makefile.orig
+++ Makefile
@@ -56,21 +56,21 @@ buildopts.h: buildopts.h.in
$(filter-out $(EXT_OBJS),$(OBJS)) $(EXT_OBJS): $(HEADS) config.mk
$(filter-out $(EXT_OBJS),$(OBJS)) : %.o : %.c
- @echo $(CC) -c $< -o $@
+ @echo $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
@$(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
$(EXT_OBJS) : %.o : %.c
- @echo $(CC) -c $< -o $@
+ @echo $(CC) -c $(CFLAGS) -DLUAKIT_WEB_EXTENSION -fpic $(CPPFLAGS) $< -o $@
@$(CC) -c $(CFLAGS) -DLUAKIT_WEB_EXTENSION -fpic $(CPPFLAGS) $< -o $@
widgets/webview.o: $(wildcard widgets/webview/*.c)
luakit: $(OBJS)
- @echo $(CC) -o $@ $(OBJS)
+ @echo $(CC) -o $@ $(OBJS) $(LDFLAGS)
@$(CC) -o $@ $(OBJS) $(LDFLAGS)
luakit.so: $(EXT_OBJS)
- @echo $(CC) -o $@ $(EXT_OBJS)
+ @echo $(CC) -o $@ $(EXT_OBJS) -shared $(LDFLAGS)
@$(CC) -o $@ $(EXT_OBJS) -shared $(LDFLAGS)
luakit.1: luakit.1.in
@@ -115,7 +115,7 @@ install: all
install -d $(DESTDIR)$(APPDIR)
install -m644 extras/luakit.desktop $(DESTDIR)$(APPDIR)
install -d $(DESTDIR)$(MANPREFIX)/man1/
- install -m644 luakit.1.gz $(DESTDIR)$(MANPREFIX)/man1/
+ install -m644 luakit.1 $(DESTDIR)$(MANPREFIX)/man1/
mkdir -p resources
find resources -type d -exec install -d $(DESTDIR)$(PREFIX)/share/luakit/'{}' \;
find resources -type f -exec sh -c 'f="{}"; install -m644 "$$f" "$(DESTDIR)$(PREFIX)/share/luakit/$$(dirname $$f)"' \;

View File

@@ -0,0 +1,31 @@
$OpenBSD$
NetBSD EOF fix
Index: common/ipc.c
--- common/ipc.c.orig
+++ common/ipc.c
@@ -21,6 +21,7 @@
#include "common/lualib.h"
#include "common/luaserialize.h"
#include "common/ipc.h"
+#include "log.h"
/* Prototypes for ipc_recv_... functions */
#define X(name) void ipc_recv_##name(ipc_endpoint_t *ipc, const void *msg, guint length);
@@ -138,6 +139,15 @@ ipc_recv_and_dispatch_or_enqueue(ipc_endpoint_t *ipc)
case G_IO_STATUS_AGAIN:
return;
case G_IO_STATUS_EOF:
+ verbose("g_io_channel_read_chars(): End Of File received");
+ /* OSX and NetBSD are sending EOF on nonblocking channels first.
+ * These requests can be ignored. They should end up in
+ * recv_hup(), but unfortunately they do not.
+ *
+ * If we do not close the socket, glib will continue to
+ * call the G_IO_IN handler.
+ */
+ g_atomic_int_dec_and_test(&ipc->refcount);
return;
case G_IO_STATUS_ERROR:
if (!g_str_equal(ipc->name, "UI"))

6
www/luakit/pkg/DESCR Normal file
View File

@@ -0,0 +1,6 @@
Luakit is a highly configurable, browser framework based on the WebKit
web content engine and the GTK+ toolkit. It is very fast, extensible by
Lua and licensed under the GNU GPLv3 license. It is primarily targeted
at power users, developers and any people with too much time on their
hands who want to have fine-grained control over their web browsers
behaviour and interface.

242
www/luakit/pkg/PLIST Normal file
View File

@@ -0,0 +1,242 @@
@comment $OpenBSD: PLIST,v 1.8 2020/08/23 22:00:39 abieber Exp $
@bin bin/luakit
lib/luakit/
@so lib/luakit/luakit.so
@man man/man1/luakit.1
share/applications/luakit.desktop
share/doc/luakit/
share/doc/luakit/AUTHORS
share/doc/luakit/COPYING.GPLv3
share/doc/luakit/README.md
share/doc/luakit/classes/
share/doc/luakit/classes/dom_document.html
share/doc/luakit/classes/dom_element.html
share/doc/luakit/classes/download.html
share/doc/luakit/classes/page.html
share/doc/luakit/classes/regex.html
share/doc/luakit/classes/sqlite3.html
share/doc/luakit/classes/stylesheet.html
share/doc/luakit/classes/timer.html
share/doc/luakit/classes/widget.html
share/doc/luakit/classes/widget:box.html
share/doc/luakit/classes/widget:drawing_area.html
share/doc/luakit/classes/widget:entry.html
share/doc/luakit/classes/widget:event_box.html
share/doc/luakit/classes/widget:image.html
share/doc/luakit/classes/widget:label.html
share/doc/luakit/classes/widget:notebook.html
share/doc/luakit/classes/widget:overlay.html
share/doc/luakit/classes/widget:paned.html
share/doc/luakit/classes/widget:scrolled.html
share/doc/luakit/classes/widget:socket.html
share/doc/luakit/classes/widget:spinner.html
share/doc/luakit/classes/widget:webview.html
share/doc/luakit/classes/widget:window.html
share/doc/luakit/index.html
share/doc/luakit/modules/
share/doc/luakit/modules/adblock.html
share/doc/luakit/modules/adblock_chrome.html
share/doc/luakit/modules/binds.html
share/doc/luakit/modules/binds_chrome.html
share/doc/luakit/modules/bookmarks.html
share/doc/luakit/modules/bookmarks_chrome.html
share/doc/luakit/modules/chrome.html
share/doc/luakit/modules/cmdhist.html
share/doc/luakit/modules/completion.html
share/doc/luakit/modules/domain_props.html
share/doc/luakit/modules/downloads.html
share/doc/luakit/modules/downloads_chrome.html
share/doc/luakit/modules/editor.html
share/doc/luakit/modules/error_page.html
share/doc/luakit/modules/follow.html
share/doc/luakit/modules/follow_selected.html
share/doc/luakit/modules/formfiller.html
share/doc/luakit/modules/go_input.html
share/doc/luakit/modules/go_next_prev.html
share/doc/luakit/modules/go_up.html
share/doc/luakit/modules/help_chrome.html
share/doc/luakit/modules/hide_scrollbars.html
share/doc/luakit/modules/history.html
share/doc/luakit/modules/history_chrome.html
share/doc/luakit/modules/image_css.html
share/doc/luakit/modules/introspector_chrome.html
share/doc/luakit/modules/ipc.html
share/doc/luakit/modules/keysym.html
share/doc/luakit/modules/log_chrome.html
share/doc/luakit/modules/lousy.bind.html
share/doc/luakit/modules/lousy.load.html
share/doc/luakit/modules/lousy.mode.html
share/doc/luakit/modules/lousy.pickle.html
share/doc/luakit/modules/lousy.signal.html
share/doc/luakit/modules/lousy.theme.html
share/doc/luakit/modules/lousy.uri.html
share/doc/luakit/modules/lousy.util.html
share/doc/luakit/modules/lousy.widget.buf.html
share/doc/luakit/modules/lousy.widget.common.html
share/doc/luakit/modules/lousy.widget.hist.html
share/doc/luakit/modules/lousy.widget.html
share/doc/luakit/modules/lousy.widget.menu.html
share/doc/luakit/modules/lousy.widget.progress.html
share/doc/luakit/modules/lousy.widget.scroll.html
share/doc/luakit/modules/lousy.widget.ssl.html
share/doc/luakit/modules/lousy.widget.tab.html
share/doc/luakit/modules/lousy.widget.tabi.html
share/doc/luakit/modules/lousy.widget.tablist.html
share/doc/luakit/modules/lousy.widget.uri.html
share/doc/luakit/modules/lousy.widget.zoom.html
share/doc/luakit/modules/luakit.html
share/doc/luakit/modules/luakit.unique.html
share/doc/luakit/modules/modes.html
share/doc/luakit/modules/msg.html
share/doc/luakit/modules/newtab_chrome.html
share/doc/luakit/modules/noscript.html
share/doc/luakit/modules/open_editor.html
share/doc/luakit/modules/proxy.html
share/doc/luakit/modules/quickmarks.html
share/doc/luakit/modules/readline.html
share/doc/luakit/modules/referer_control_wm.html
share/doc/luakit/modules/search.html
share/doc/luakit/modules/select.html
share/doc/luakit/modules/select_wm.html
share/doc/luakit/modules/session.html
share/doc/luakit/modules/settings.html
share/doc/luakit/modules/settings_chrome.html
share/doc/luakit/modules/soup.html
share/doc/luakit/modules/styles.html
share/doc/luakit/modules/tab_favicons.html
share/doc/luakit/modules/tabhistory.html
share/doc/luakit/modules/taborder.html
share/doc/luakit/modules/tests.lib.html
share/doc/luakit/modules/undoclose.html
share/doc/luakit/modules/unique_instance.html
share/doc/luakit/modules/userscripts.html
share/doc/luakit/modules/utf8.html
share/doc/luakit/modules/vertical_tabs.html
share/doc/luakit/modules/view_source.html
share/doc/luakit/modules/viewpdf.html
share/doc/luakit/modules/webinspector.html
share/doc/luakit/modules/webview.html
share/doc/luakit/modules/window.html
share/doc/luakit/modules/xdg.html
share/doc/luakit/pages/
share/doc/luakit/pages/01-authors.html
share/doc/luakit/pages/02-faq.html
share/doc/luakit/pages/03-quick-start-guide.html
share/doc/luakit/pages/04-migration-guide.html
share/doc/luakit/pages/05-configuration.html
share/doc/luakit/pages/06-tests.html
share/doc/luakit/pages/07-build-debian-package.html
share/examples/luakit/
@sample ${SYSCONFDIR}/xdg/luakit/
share/examples/luakit/rc.lua
@sample ${SYSCONFDIR}/xdg/luakit/rc.lua
share/examples/luakit/theme.lua
@sample ${SYSCONFDIR}/xdg/luakit/theme.lua
share/luakit/
share/luakit/lib/
share/luakit/lib/adblock.lua
share/luakit/lib/adblock_chrome.lua
share/luakit/lib/adblock_wm.lua
share/luakit/lib/binds.lua
share/luakit/lib/binds_chrome.lua
share/luakit/lib/bookmarks.lua
share/luakit/lib/bookmarks_chrome.lua
share/luakit/lib/chrome.lua
share/luakit/lib/chrome_wm.lua
share/luakit/lib/cmdhist.lua
share/luakit/lib/completion.lua
share/luakit/lib/domain_props.lua
share/luakit/lib/downloads.lua
share/luakit/lib/downloads_chrome.lua
share/luakit/lib/editor.lua
share/luakit/lib/error_page.lua
share/luakit/lib/error_page_wm.lua
share/luakit/lib/follow.lua
share/luakit/lib/follow_selected.lua
share/luakit/lib/follow_selected_wm.lua
share/luakit/lib/follow_wm.lua
share/luakit/lib/formfiller.lua
share/luakit/lib/formfiller_wm.lua
share/luakit/lib/go_input.lua
share/luakit/lib/go_next_prev.lua
share/luakit/lib/go_up.lua
share/luakit/lib/help_chrome.lua
share/luakit/lib/hide_scrollbars.lua
share/luakit/lib/history.lua
share/luakit/lib/history_chrome.lua
share/luakit/lib/image_css.lua
share/luakit/lib/image_css_wm.lua
share/luakit/lib/introspector_chrome.lua
share/luakit/lib/keysym.lua
share/luakit/lib/log_chrome.lua
share/luakit/lib/lousy/
share/luakit/lib/lousy/bind.lua
share/luakit/lib/lousy/init.lua
share/luakit/lib/lousy/load.lua
share/luakit/lib/lousy/mode.lua
share/luakit/lib/lousy/pickle.lua
share/luakit/lib/lousy/signal.lua
share/luakit/lib/lousy/theme.lua
share/luakit/lib/lousy/uri.lua
share/luakit/lib/lousy/util.lua
share/luakit/lib/lousy/widget/
share/luakit/lib/lousy/widget/buf.lua
share/luakit/lib/lousy/widget/common.lua
share/luakit/lib/lousy/widget/hist.lua
share/luakit/lib/lousy/widget/init.lua
share/luakit/lib/lousy/widget/menu.lua
share/luakit/lib/lousy/widget/progress.lua
share/luakit/lib/lousy/widget/scroll.lua
share/luakit/lib/lousy/widget/ssl.lua
share/luakit/lib/lousy/widget/tab.lua
share/luakit/lib/lousy/widget/tabi.lua
share/luakit/lib/lousy/widget/tablist.lua
share/luakit/lib/lousy/widget/uri.lua
share/luakit/lib/lousy/widget/zoom.lua
share/luakit/lib/markdown.lua
share/luakit/lib/modes.lua
share/luakit/lib/newtab_chrome.lua
share/luakit/lib/noscript.lua
share/luakit/lib/open_editor.lua
share/luakit/lib/proxy.lua
share/luakit/lib/quickmarks.lua
share/luakit/lib/readline.lua
share/luakit/lib/referer_control_wm.lua
share/luakit/lib/search.lua
share/luakit/lib/select.lua
share/luakit/lib/select_wm.lua
share/luakit/lib/session.lua
share/luakit/lib/settings.lua
share/luakit/lib/settings_chrome.lua
share/luakit/lib/styles.lua
share/luakit/lib/tab_favicons.lua
share/luakit/lib/tabhistory.lua
share/luakit/lib/taborder.lua
share/luakit/lib/undoclose.lua
share/luakit/lib/unique_instance.lua
share/luakit/lib/userscripts.lua
share/luakit/lib/vertical_tabs.lua
share/luakit/lib/view_source.lua
share/luakit/lib/viewpdf.lua
share/luakit/lib/webinspector.lua
share/luakit/lib/webview.lua
share/luakit/lib/webview_wm.lua
share/luakit/lib/window.lua
share/luakit/resources/
share/luakit/resources/icons/
share/luakit/resources/icons/COPYING
share/luakit/resources/icons/tab-icon-chrome.png
share/luakit/resources/icons/tab-icon-chrome@2x.png
share/luakit/resources/icons/tab-icon-crash.png
share/luakit/resources/icons/tab-icon-crash@2x.png
share/luakit/resources/icons/tab-icon-error.png
share/luakit/resources/icons/tab-icon-error@2x.png
share/luakit/resources/icons/tab-icon-page.png
share/luakit/resources/icons/tab-icon-page@2x.png
share/luakit/resources/icons/tab-icon-private.png
share/luakit/resources/icons/tab-icon-private@2x.png
share/luakit/resources/icons/tab-icon-security-error.png
share/luakit/resources/icons/tab-icon-security-error@2x.png
share/pixmaps/
share/pixmaps/luakit.png
@tag update-desktop-database