hstr/build/debian/aptly-add-deb.sh
2018-08-28 11:28:51 +02:00

57 lines
1.8 KiB
Bash
Executable file

#!/bin/bash
#
# MindForger knowledge management tool
#
# Copyright (C) 2016-2018 Martin Dvorak <martin.dvorak@mindforger.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Debian releases: https://www.debian.org/releases/
# 6/7/8/9/10: squeeze wheezy jessie stretch buster
echo "See 'MindForger Release Guide#Debian and my PPA' notebook for detailed steps description..."
# list aptly repositories
#aptly repo list
# show repository basic info
#aptly repo show mindforger-com-ppa
# add .deb to repository
#aptly repo add mindforger-com-ppa hstr_2.0.0-1_amd64.deb
#aptly repo remove mindforger-com-ppa hstr_2.0.0-1_amd64
# show repo content w/ packages
#aptly repo show -with-packages mindforger-com-ppa
# show snapshots
#aptly snapshot list
# delete snapshot(s) ONLY if needed - publish must be deleted first!
#aptly snapshot drop hstr-2.0.0-snapshot
# create snapshot in the time of release - note release NAME
#aptly snapshot create hstr-2.0.0-snapshot from repo mindforger-com-ppa
# show published snapshots
#aptly publish list
# delete published snapshot(s) ONLY if needed
#aptly publish drop stretch
# publish snapshot to local filesystem so that it can be uploaded - note release NAME
#aptly publish snapshot hstr-2.0.0-snapshot
# eof