Skip to content

Commit

Permalink
refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxmaniac committed Aug 27, 2024
1 parent 20913c4 commit a5b428a
Show file tree
Hide file tree
Showing 48 changed files with 528 additions and 123 deletions.
4 changes: 2 additions & 2 deletions bionic/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM ubuntu:bionic
LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawireless.org>
LABEL org.opencontainers.image.authors="Victor Seva <linuxmaniac@torreviejawireless.org>"

# Important! Update this no-op ENV variable when this Dockerfile
# is updated with the current date. It will force refresh of all
# of the base images and things like 'apt-get update' won't be using
# old cached versions when the Dockerfile is built.
ENV REFRESHED_AT 2024-02-23
ENV REFRESHED_AT="2024-08-27"

RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.ubuntu.com/ubuntu > /etc/pbuilderrc
Expand Down
18 changes: 18 additions & 0 deletions bionic/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
kamailio (5.8.2) unstable; urgency=medium

* version set 5.8.2

-- Victor Seva <vseva@debian.org> Wed, 12 Jun 2024 09:00:17 +0200

kamailio (5.8.1) unstable; urgency=medium

* version set 5.8.1

-- Victor Seva <vseva@debian.org> Wed, 03 Apr 2024 08:21:53 +0200

kamailio (5.8.0) unstable; urgency=medium

* version set 5.8.0

-- Victor Seva <vseva@debian.org> Thu, 07 Mar 2024 11:40:20 +0100

kamailio (5.8.0~rc0) unstable; urgency=medium

* version set 5.8.0~rc0
Expand Down
17 changes: 17 additions & 0 deletions bionic/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,23 @@ Description: TLS support for the Kamailio SIP server (authentication, transport)
This package provides TLS support for encrypted and authenticated
SIP connections as well as generic TLS support for many Kamailio modules.

Package: kamailio-tls-wolfssl-modules
Architecture: any
Multi-Arch: same
Pre-Depends:
${misc:Pre-Depends},
Depends:
kamailio (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: TLS support for the Kamailio SIP server (authentication, transport)
Kamailio is a very fast and flexible SIP (RFC3261)
server. Written entirely in C, Kamailio can handle thousands calls
per second even on low-budget hardware.
.
This package provides TLS support for encrypted and authenticated using wolfssl
SIP connections as well as generic TLS support for many Kamailio modules.

Package: kamailio-outbound-modules
Architecture: any
Multi-Arch: same
Expand Down
19 changes: 11 additions & 8 deletions bionic/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -140,24 +140,27 @@ test_install_all-stamp: build
$(MAKE) install quiet=verbose LIBDIR=$(LIBDIR) group_include="kstandard"
touch test_install_all-stamp

# tls_wolfssl => tls-wolfssl
$(INSTALL_MODULES): module = $(subst _,-,$(subst install_,,$@))
$(INSTALL_MODULES): grp = $(subst install_,,$@)
$(INSTALL_MODULES): test_install_all-stamp
$(MAKE) install-modules-all \
quiet=verbose \
LIBDIR=$(LIBDIR) \
BASEDIR=$(D)-$(subst install_,,$@)-modules \
cfg_prefix=$(D)-$(subst install_,,$@)-modules \
doc-dir=share/doc/$(DEB_SOURCE)-$(subst install_,,$@)-modules \
group_include="k$(subst install_,,$@)"
BASEDIR=$(D)-$(module)-modules \
cfg_prefix=$(D)-$(module)-modules \
doc-dir=share/doc/$(DEB_SOURCE)-$(module)-modules \
group_include="k$(grp)"
# Eliminate duplicate libs.
for d in $(DUP_LIBS_DIRS); do \
test "$$d" != "$(D)-$${module}-modules/usr/$(LIBDIR)/kamailio" && \
test "$$d" != "$(D)-$(module)-modules/usr/$(LIBDIR)/kamailio" && \
for r in `find $$d -name 'lib*' | xargs`; do \
echo "removing $(subst install_,,$@) lib `basename $$r` present also in $$d"; \
rm -f $(D)-$(subst install_,,$@)-modules/usr/$(LIBDIR)/kamailio/`basename "$$r"`; \
echo "removing $(module) lib `basename $$r` present also in $$d"; \
rm -f $(D)-$(module)-modules/usr/$(LIBDIR)/kamailio/`basename "$$r"`; \
done ; \
done
# clean empty dirs
find $(D)-$(subst install_,,$@)-modules -depth -empty -type d -exec rmdir {} \;
find $(D)-$(module)-modules -depth -empty -type d -exec rmdir {} \;

$(INSTALL_EXTRA): test_install_all-stamp
$(MAKE) install-modules-all \
Expand Down
4 changes: 2 additions & 2 deletions bookworm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM debian:bookworm
LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawireless.org>
LABEL org.opencontainers.image.authors="Victor Seva <linuxmaniac@torreviejawireless.org>"

# Important! Update this no-op ENV variable when this Dockerfile
# is updated with the current date. It will force refresh of all
# of the base images and things like 'apt-get update' won't be using
# old cached versions when the Dockerfile is built.
ENV REFRESHED_AT 2024-02-23
ENV REFRESHED_AT="2024-08-27"

RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://deb.debian.org/debian > /etc/pbuilderrc
Expand Down
18 changes: 18 additions & 0 deletions bookworm/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
kamailio (5.8.2) unstable; urgency=medium

* version set 5.8.2

-- Victor Seva <vseva@debian.org> Wed, 12 Jun 2024 09:00:17 +0200

kamailio (5.8.1) unstable; urgency=medium

* version set 5.8.1

-- Victor Seva <vseva@debian.org> Wed, 03 Apr 2024 08:21:53 +0200

kamailio (5.8.0) unstable; urgency=medium

* version set 5.8.0

-- Victor Seva <vseva@debian.org> Thu, 07 Mar 2024 11:40:20 +0100

kamailio (5.8.0~rc0) unstable; urgency=medium

* version set 5.8.0~rc0
Expand Down
2 changes: 1 addition & 1 deletion bookworm/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ Description: TLS support for the Kamailio SIP server (authentication, transport)
This package provides TLS support for encrypted and authenticated
SIP connections as well as generic TLS support for many Kamailio modules.

Package: kamailio-wolftls-modules
Package: kamailio-tls-wolfssl-modules
Architecture: any
Multi-Arch: same
Pre-Depends:
Expand Down
19 changes: 11 additions & 8 deletions bookworm/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -140,24 +140,27 @@ test_install_all-stamp: build
$(MAKE) install quiet=verbose LIBDIR=$(LIBDIR) group_include="kstandard"
touch test_install_all-stamp

# tls_wolfssl => tls-wolfssl
$(INSTALL_MODULES): module = $(subst _,-,$(subst install_,,$@))
$(INSTALL_MODULES): grp = $(subst install_,,$@)
$(INSTALL_MODULES): test_install_all-stamp
$(MAKE) install-modules-all \
quiet=verbose \
LIBDIR=$(LIBDIR) \
BASEDIR=$(D)-$(subst install_,,$@)-modules \
cfg_prefix=$(D)-$(subst install_,,$@)-modules \
doc-dir=share/doc/$(DEB_SOURCE)-$(subst install_,,$@)-modules \
group_include="k$(subst install_,,$@)"
BASEDIR=$(D)-$(module)-modules \
cfg_prefix=$(D)-$(module)-modules \
doc-dir=share/doc/$(DEB_SOURCE)-$(module)-modules \
group_include="k$(grp)"
# Eliminate duplicate libs.
for d in $(DUP_LIBS_DIRS); do \
test "$$d" != "$(D)-$${module}-modules/usr/$(LIBDIR)/kamailio" && \
test "$$d" != "$(D)-$(module)-modules/usr/$(LIBDIR)/kamailio" && \
for r in `find $$d -name 'lib*' | xargs`; do \
echo "removing $(subst install_,,$@) lib `basename $$r` present also in $$d"; \
rm -f $(D)-$(subst install_,,$@)-modules/usr/$(LIBDIR)/kamailio/`basename "$$r"`; \
echo "removing $(module) lib `basename $$r` present also in $$d"; \
rm -f $(D)-$(module)-modules/usr/$(LIBDIR)/kamailio/`basename "$$r"`; \
done ; \
done
# clean empty dirs
find $(D)-$(subst install_,,$@)-modules -depth -empty -type d -exec rmdir {} \;
find $(D)-$(module)-modules -depth -empty -type d -exec rmdir {} \;

$(INSTALL_EXTRA): test_install_all-stamp
$(MAKE) install-modules-all \
Expand Down
4 changes: 2 additions & 2 deletions bullseye/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM debian:bullseye
LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawireless.org>
LABEL org.opencontainers.image.authors="Victor Seva <linuxmaniac@torreviejawireless.org>"

# Important! Update this no-op ENV variable when this Dockerfile
# is updated with the current date. It will force refresh of all
# of the base images and things like 'apt-get update' won't be using
# old cached versions when the Dockerfile is built.
ENV REFRESHED_AT 2024-02-23
ENV REFRESHED_AT="2024-08-27"

RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://deb.debian.org/debian > /etc/pbuilderrc
Expand Down
18 changes: 18 additions & 0 deletions bullseye/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
kamailio (5.8.2) unstable; urgency=medium

* version set 5.8.2

-- Victor Seva <vseva@debian.org> Wed, 12 Jun 2024 09:00:17 +0200

kamailio (5.8.1) unstable; urgency=medium

* version set 5.8.1

-- Victor Seva <vseva@debian.org> Wed, 03 Apr 2024 08:21:53 +0200

kamailio (5.8.0) unstable; urgency=medium

* version set 5.8.0

-- Victor Seva <vseva@debian.org> Thu, 07 Mar 2024 11:40:20 +0100

kamailio (5.8.0~rc0) unstable; urgency=medium

* version set 5.8.0~rc0
Expand Down
17 changes: 17 additions & 0 deletions bullseye/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,23 @@ Description: TLS support for the Kamailio SIP server (authentication, transport)
This package provides TLS support for encrypted and authenticated
SIP connections as well as generic TLS support for many Kamailio modules.

Package: kamailio-tls-wolfssl-modules
Architecture: any
Multi-Arch: same
Pre-Depends:
${misc:Pre-Depends},
Depends:
kamailio (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: TLS support for the Kamailio SIP server (authentication, transport)
Kamailio is a very fast and flexible SIP (RFC3261)
server. Written entirely in C, Kamailio can handle thousands calls
per second even on low-budget hardware.
.
This package provides TLS support for encrypted and authenticated using wolfssl
SIP connections as well as generic TLS support for many Kamailio modules.

Package: kamailio-outbound-modules
Architecture: any
Multi-Arch: same
Expand Down
19 changes: 11 additions & 8 deletions bullseye/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -140,24 +140,27 @@ test_install_all-stamp: build
$(MAKE) install quiet=verbose LIBDIR=$(LIBDIR) group_include="kstandard"
touch test_install_all-stamp

# tls_wolfssl => tls-wolfssl
$(INSTALL_MODULES): module = $(subst _,-,$(subst install_,,$@))
$(INSTALL_MODULES): grp = $(subst install_,,$@)
$(INSTALL_MODULES): test_install_all-stamp
$(MAKE) install-modules-all \
quiet=verbose \
LIBDIR=$(LIBDIR) \
BASEDIR=$(D)-$(subst install_,,$@)-modules \
cfg_prefix=$(D)-$(subst install_,,$@)-modules \
doc-dir=share/doc/$(DEB_SOURCE)-$(subst install_,,$@)-modules \
group_include="k$(subst install_,,$@)"
BASEDIR=$(D)-$(module)-modules \
cfg_prefix=$(D)-$(module)-modules \
doc-dir=share/doc/$(DEB_SOURCE)-$(module)-modules \
group_include="k$(grp)"
# Eliminate duplicate libs.
for d in $(DUP_LIBS_DIRS); do \
test "$$d" != "$(D)-$${module}-modules/usr/$(LIBDIR)/kamailio" && \
test "$$d" != "$(D)-$(module)-modules/usr/$(LIBDIR)/kamailio" && \
for r in `find $$d -name 'lib*' | xargs`; do \
echo "removing $(subst install_,,$@) lib `basename $$r` present also in $$d"; \
rm -f $(D)-$(subst install_,,$@)-modules/usr/$(LIBDIR)/kamailio/`basename "$$r"`; \
echo "removing $(module) lib `basename $$r` present also in $$d"; \
rm -f $(D)-$(module)-modules/usr/$(LIBDIR)/kamailio/`basename "$$r"`; \
done ; \
done
# clean empty dirs
find $(D)-$(subst install_,,$@)-modules -depth -empty -type d -exec rmdir {} \;
find $(D)-$(module)-modules -depth -empty -type d -exec rmdir {} \;

$(INSTALL_EXTRA): test_install_all-stamp
$(MAKE) install-modules-all \
Expand Down
4 changes: 2 additions & 2 deletions buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM debian:buster
LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawireless.org>
LABEL org.opencontainers.image.authors="Victor Seva <linuxmaniac@torreviejawireless.org>"

# Important! Update this no-op ENV variable when this Dockerfile
# is updated with the current date. It will force refresh of all
# of the base images and things like 'apt-get update' won't be using
# old cached versions when the Dockerfile is built.
ENV REFRESHED_AT 2024-02-23
ENV REFRESHED_AT="2024-08-27"

RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://deb.debian.org/debian > /etc/pbuilderrc
Expand Down
18 changes: 18 additions & 0 deletions buster/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
kamailio (5.8.2) unstable; urgency=medium

* version set 5.8.2

-- Victor Seva <vseva@debian.org> Wed, 12 Jun 2024 09:00:17 +0200

kamailio (5.8.1) unstable; urgency=medium

* version set 5.8.1

-- Victor Seva <vseva@debian.org> Wed, 03 Apr 2024 08:21:53 +0200

kamailio (5.8.0) unstable; urgency=medium

* version set 5.8.0

-- Victor Seva <vseva@debian.org> Thu, 07 Mar 2024 11:40:20 +0100

kamailio (5.8.0~rc0) unstable; urgency=medium

* version set 5.8.0~rc0
Expand Down
17 changes: 17 additions & 0 deletions buster/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,23 @@ Description: TLS support for the Kamailio SIP server (authentication, transport)
This package provides TLS support for encrypted and authenticated
SIP connections as well as generic TLS support for many Kamailio modules.

Package: kamailio-tls-wolfssl-modules
Architecture: any
Multi-Arch: same
Pre-Depends:
${misc:Pre-Depends},
Depends:
kamailio (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
Description: TLS support for the Kamailio SIP server (authentication, transport)
Kamailio is a very fast and flexible SIP (RFC3261)
server. Written entirely in C, Kamailio can handle thousands calls
per second even on low-budget hardware.
.
This package provides TLS support for encrypted and authenticated using wolfssl
SIP connections as well as generic TLS support for many Kamailio modules.

Package: kamailio-outbound-modules
Architecture: any
Multi-Arch: same
Expand Down
19 changes: 11 additions & 8 deletions buster/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -140,24 +140,27 @@ test_install_all-stamp: build
$(MAKE) install quiet=verbose LIBDIR=$(LIBDIR) group_include="kstandard"
touch test_install_all-stamp

# tls_wolfssl => tls-wolfssl
$(INSTALL_MODULES): module = $(subst _,-,$(subst install_,,$@))
$(INSTALL_MODULES): grp = $(subst install_,,$@)
$(INSTALL_MODULES): test_install_all-stamp
$(MAKE) install-modules-all \
quiet=verbose \
LIBDIR=$(LIBDIR) \
BASEDIR=$(D)-$(subst install_,,$@)-modules \
cfg_prefix=$(D)-$(subst install_,,$@)-modules \
doc-dir=share/doc/$(DEB_SOURCE)-$(subst install_,,$@)-modules \
group_include="k$(subst install_,,$@)"
BASEDIR=$(D)-$(module)-modules \
cfg_prefix=$(D)-$(module)-modules \
doc-dir=share/doc/$(DEB_SOURCE)-$(module)-modules \
group_include="k$(grp)"
# Eliminate duplicate libs.
for d in $(DUP_LIBS_DIRS); do \
test "$$d" != "$(D)-$${module}-modules/usr/$(LIBDIR)/kamailio" && \
test "$$d" != "$(D)-$(module)-modules/usr/$(LIBDIR)/kamailio" && \
for r in `find $$d -name 'lib*' | xargs`; do \
echo "removing $(subst install_,,$@) lib `basename $$r` present also in $$d"; \
rm -f $(D)-$(subst install_,,$@)-modules/usr/$(LIBDIR)/kamailio/`basename "$$r"`; \
echo "removing $(module) lib `basename $$r` present also in $$d"; \
rm -f $(D)-$(module)-modules/usr/$(LIBDIR)/kamailio/`basename "$$r"`; \
done ; \
done
# clean empty dirs
find $(D)-$(subst install_,,$@)-modules -depth -empty -type d -exec rmdir {} \;
find $(D)-$(module)-modules -depth -empty -type d -exec rmdir {} \;

$(INSTALL_EXTRA): test_install_all-stamp
$(MAKE) install-modules-all \
Expand Down
4 changes: 2 additions & 2 deletions focal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM ubuntu:focal
LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawireless.org>
LABEL org.opencontainers.image.authors="Victor Seva <linuxmaniac@torreviejawireless.org>"

# Important! Update this no-op ENV variable when this Dockerfile
# is updated with the current date. It will force refresh of all
# of the base images and things like 'apt-get update' won't be using
# old cached versions when the Dockerfile is built.
ENV REFRESHED_AT 2024-02-23
ENV REFRESHED_AT="2024-08-27"

RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.ubuntu.com/ubuntu > /etc/pbuilderrc
Expand Down
Loading

0 comments on commit a5b428a

Please sign in to comment.