Skip to content

Commit

Permalink
Rel 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jxmx committed May 6, 2024
1 parent 7dc8dad commit ed88ade
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
SRCNAME = asl-apt-repos
PKGNAME = $(SRCNAME)
RELVER = 1.3
RELVER = 1.4
DEBVER = 1
RELPLAT ?= deb$(shell lsb_release -rs 2> /dev/null)

Expand All @@ -16,7 +16,8 @@ default:
@echo This does nothing

install: $(DESTDIR)/etc/apt/keyrings/allstarlink.gpg \
$(DESTDIR)/etc/apt/sources.list.d/allstarlink.list
$(DESTDIR)/etc/apt/sources.list.d/allstarlink.list \
$(DESTDIR)/usr/bin/asl-repo-switch

$(DESTDIR)/etc/apt/keyrings/%: %
install -D -m 0644 $< $@
Expand All @@ -25,6 +26,9 @@ $(DESTDIR)/etc/apt/sources.list.d/%: %
install -D -m 0644 $< $@
perl -pi -e "s/__DREL__/$(DREL)/g" $@

$(DESTDIR)/usr/bin/%: %
install -D -m 0755 $< $@

deb: debclean debprep
debchange --distribution stable --package $(PKGNAME) \
--newversion $(EPOCHVER)$(RELVER)-$(DEBVER).$(RELPLAT) \
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
asl-apt-repos (1.4-1) unstable; urgency=medium

* Added asl-repo-switch(1)

-- Jason McCormick <jason@mfamily.org> Sun, 05 May 2024 20:56:02 -0400

asl-apt-repos (1.0-1) unstable; urgency=medium

* Initial release
Expand Down

0 comments on commit ed88ade

Please sign in to comment.