Compare commits

..

No commits in common. "ad04e2f121d3e653a3f734954376bac18bba5189" and "038ef29708abf0fc0d1bd1a3e93e7cf5a86d43d4" have entirely different histories.

8 changed files with 0 additions and 159 deletions

View File

@ -1,13 +0,0 @@
BDEPEND=>=dev-lang/go-1.20:= app-arch/unzip
DEFINED_PHASES=compile install prepare test unpack
DESCRIPTION=OPDS and web server for .inpx libraries with full-text search
EAPI=8
HOMEPAGE=https://github.com/shemanaev/inpxer
INHERIT=go-module
KEYWORDS=~amd64
LICENSE=MIT
RESTRICT=strip
SLOT=0
SRC_URI=https://github.com/shemanaev/inpxer/archive/v0.2.5.tar.gz -> inpxer-0.2.5.tar.gz
_eclasses_=multiprocessing e644caa6eb7ce7e5ab0864383ac13ad9 toolchain-funcs 948855ec7ad9f11351edf9066708dfa9 multilib 7e1347c006a76bb812f3a9f663b79991 flag-o-matic fa33e3696fe4689dda7e9affe92e2c94 go-env 90efbc8636d2f02d9654183330e84cf7 go-module 83fd3ed1657cfc316c93d6a37018290d
_md5_=b4ea44fc838b4ba7630c22ff85e423c2

View File

@ -1 +0,0 @@
DIST inpxer-0.2.5.tar.gz 485529 BLAKE2B d15f1aacbb00cedaf3b605a9125ce82c65e535cf4417b6562a3e7de8384e039dd551572a6c3b6b2c6d078a3b00f71df8254f101fd00c9831779ccaa422d75a38 SHA512 dbf1f5e50c3ec2291698293ef37bcb31a7e912832fd5a4bdad4e7a2db92d85592fdbb813ea85c151e53e5bf4d39219ec38f285b091f1d6a8fd986900dd04c175

View File

@ -1,11 +0,0 @@
--- a/internal/config/config.go 2024-09-16 02:47:23.666714944 +0300
+++ b/internal/config/config.go 2024-09-16 02:47:50.696715919 +0300
@@ -8,7 +8,7 @@
"github.com/pelletier/go-toml/v2"
)
-const configFilename = "inpxer.toml"
+const configFilename = "/etc/inpxer/inpxer.toml"
type MyConfig struct {
Language string `toml:"language"`

View File

@ -1,30 +0,0 @@
# language used for interface and indexing
language = "en" # en, ru
# title displayed on web and in OPDS catalog
title = "My library"
# format for author's name. possible values:
# - short: Fyodor Dostoevsky
# - initials: F. M. Dostoevsky
# - full: Fyodor Mikhailovich Dostoevsky
author_name_format = "short"
# where to store index
# WARNING: keep in mind that this folder will be deleted during indexing,
# don't point it to an existing location (and definitely don't set it equal to library_path)
index_path = "/data/index"
# where is you books stored
library_path = "/data/library"
# host:port to listen on
listen = ":8080"
# fully qualified url to server. required for OPDS (OpenSearch)
full_url = "http://localhost:8080"
# format converters. can be as many as you want
#[[converters]]
## source file extension
#from = "fb2"
## target file extension
#to = "epub"
## converter executable
#command = "fb2epub"
## converter arguments. {from} becomes source file path, {to} - output file path, {to_dir} - output directory (for fb2converter)
#arguments = "{from} {to}"

View File

@ -1,23 +0,0 @@
#!/sbin/openrc-run
# Copyright 2016-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Web server for .inpx libraries"
pidfile=${pidfile:-"/run/${RC_SVCNAME}.pid"}
user=${user:-${RC_SVCNAME}}
group=${group:-${RC_SVCNAME}}
command="/usr/sbin/inpxer"
command_args="${command_args:-serve}"
command_background="true"
command_user="${user}:${group}"
output_log="/var/log/inpxer/${RC_SVCNAME}.log"
error_log="/var/log/inpxer/${RC_SVCNAME}.log"
depend() {
after net
}
start_pre() {
checkpath -q -d -m 0755 -o ${user}:${group} /var/log/inpxer
}

View File

@ -1,9 +0,0 @@
/var/log/inpxer/inpxer.log {
weekly
rotate 10
copytruncate
compress
delaycompress
notifempty
missingok
}

View File

@ -1,59 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="OPDS and web server for .inpx libraries with full-text search"
HOMEPAGE="https://github.com/shemanaev/inpxer"
if [[ ${PV} == 9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/shemanaev/inpxer.git"
else
SRC_URI="
https://github.com/shemanaev/inpxer/archive/v${PV}.tar.gz -> ${P}.tar.gz
"
KEYWORDS="~amd64"
fi
# main pkg
LICENSE="MIT"
SLOT="0"
PATCHES=(
"${FILESDIR}"/01-config-placement-0.2.5.patch
)
src_unpack() {
if [[ ${PV} == 9999* ]]; then
git-r3_src_unpack
go-module_live_vendor
else
default
fi
}
src_prepare() {
[[ ${PV} != 9999* ]] && { ln -sv ../vendor ./ || die ; }
default
}
src_compile() {
./"${PN}" --help > "${PN}".1 || die
}
src_test() {
emake test-flags= test
}
src_install() {
dosbin "${PN}"
cp "${FILESDIR}"/inpxer-example.toml "${ED}"/etc/inpxer/inpxer.toml || die
doman "${PN}".1
newinitd "${FILESDIR}"/${PN}.initd-1 ${PN}
insinto /etc/logrotate.d
newins "${FILESDIR}"/${PN}.logrotate "${PN}"
keepdir /var/log/${PN}
}

View File

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>root@cppmm.net.ru</email>
<name>Anton Kropachev</name>
</maintainer>
<upstream>
<remote-id type="github">shemanaev/inpxer</remote-id>
<bugs-to>https://github.com/shemanaev/inpxer/issues</bugs-to>
<doc>https://github.com/shemanaev/inpxer/blob/master/README.md</doc>
</upstream>
</pkgmetadata>