Compare commits
No commits in common. "460f8c14bcf494f6a495498b0eaa61eb57ff5fd2" and "c76b9cf7b5bdb9126f638f827baad31c45efdc0d" have entirely different histories.
460f8c14bc
...
c76b9cf7b5
@ -34,9 +34,6 @@ function build_git_repo()
|
||||
sed -e "s/VERSION_PLACEHOLDER/$VERSION_CHANGELOG/g" -i ./debian/changelog
|
||||
DATE_CHANGELOG=$(date -R)
|
||||
sed -e "s/DATE_PLACEHOLDER/$DATE_CHANGELOG/g" -i ./debian/changelog
|
||||
|
||||
git submodule init
|
||||
git submodule update
|
||||
dpkg-buildpackage --no-sign
|
||||
cp -a ../*.deb "$TARGET_DIR"/
|
||||
}
|
||||
|
@ -1,14 +0,0 @@
|
||||
#!/bin/bash
|
||||
source ../functions.bash
|
||||
if [ $# -ne 1 ] ; then
|
||||
echo "Usage: $0 poolpath" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
set -e
|
||||
|
||||
TAG="v0.1rc3"
|
||||
BUILDDIR=$(mktemp -d)
|
||||
OUTPUT_DIR="$1"
|
||||
|
||||
build_git_repo "$BUILDDIR" "https://gitea.quitesimple.org/crtxcr/looqs" looqs "$TAG" "$OUTPUT_DIR"
|
||||
|
@ -1,5 +0,0 @@
|
||||
looqs (v0.1) unstable; urgency=medium
|
||||
|
||||
* Initial Release.
|
||||
|
||||
-- quitesimple.org repo management department ;-) <repo@quitesimple.org> Fr 4. Feb 17:53:39 CET 2022
|
@ -1,12 +0,0 @@
|
||||
Source: looqs
|
||||
Section: unknown
|
||||
Priority: optional
|
||||
Maintainer: quitesimple.org repo management department ;-) <repo@quitesimple.org>
|
||||
Build-Depends: debhelper-compat (= 12), qtbase5-dev, libpoppler-qt5-dev, libuchardet-dev, libquazip5-dev
|
||||
Standards-Version: 4.4.1
|
||||
Homepage: <https://gitea.quitesimple.org/crtxcr/looqs>
|
||||
|
||||
Package: looqs
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: FTS desktop search with previews
|
@ -1,4 +0,0 @@
|
||||
cli/looqs /usr/bin/
|
||||
gui/looqs-gui /usr/bin/
|
||||
looqs.svg /usr/share/icons/hicolor/scalable/apps/
|
||||
looqs.desktop /usr/share/applications/
|
@ -1,5 +0,0 @@
|
||||
#!/usr/bin/make -f
|
||||
%:
|
||||
dh $@
|
||||
|
||||
override_dh_auto_install:
|
@ -1 +0,0 @@
|
||||
3.0 (native)
|
17
update_repo
17
update_repo
@ -3,19 +3,12 @@ set -u
|
||||
source ./CONFIG
|
||||
mkdir -p repo/dists
|
||||
mkdir -p repo/pool
|
||||
mkdir -p repo/dists/impish/main/binary-amd64/
|
||||
mkdir -p repo/dists/jammy/main/binary-amd64/
|
||||
mkdir -p repo/dists/default/main/binary-amd64/
|
||||
cd repo
|
||||
|
||||
for distro in $(ls dists) ; do
|
||||
dpkg-scanpackages -a amd64 pool/$distro > ./dists/$distro/main/binary-amd64/Packages
|
||||
cd dists/$distro
|
||||
apt-ftparchive -c ../../../repo.$distro.conf release . > Release
|
||||
dpkg-scanpackages -a amd64 pool > ./dists/default/main/binary-amd64/Packages
|
||||
cd dists/default/
|
||||
apt-ftparchive -c ../../../repo.conf release . > Release
|
||||
gpg -a --yes --clearsign --output InRelease --local-user "$SIGNING_KEY_EMAIL" --detach-sign Release
|
||||
cd ../../
|
||||
done
|
||||
cd ..
|
||||
echo "Press key to upload"
|
||||
read
|
||||
cd ../../../
|
||||
rsync -aAXPv --delete repo/ "$TARGET_SERVER":"$TARGET_PATH"
|
||||
ssh "$TARGET_SERVER" chown -R "$TARGET_OWNER" "$TARGET_PATH"
|
||||
|
Loading…
Reference in New Issue
Block a user