OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
dpkg
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/10/2024 09:42:49 AM
rwxr-xr-x
📄
abitable
362 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
architecture.mk
614 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
buildflags.mk
1.55 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
buildtools.mk
1.74 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
cputable
1.92 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
default.mk
271 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
no-pie-compile.specs
77 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
no-pie-link.specs
65 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
ostable
1.95 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
pie-compile.specs
97 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
pie-link.specs
76 bytes
05/25/2022 11:14:56 AM
rw-r--r--
📄
pkg-info.mk
1.47 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
tupletable
1.33 KB
05/25/2022 11:14:56 AM
rw-r--r--
📄
vendor.mk
803 bytes
05/25/2022 11:14:56 AM
rw-r--r--
Editing: pkg-info.mk
Close
# Makefile snippet defining the following variables: # # DEB_SOURCE: the source package name # DEB_VERSION: the full version of the package (epoch + upstream vers. + revision) # DEB_VERSION_EPOCH_UPSTREAM: the package's version without the Debian revision # DEB_VERSION_UPSTREAM_REVISION: the package's version without the Debian epoch # DEB_VERSION_UPSTREAM: the package's upstream version # DEB_DISTRIBUTION: the distribution(s) listed in the current entry of debian/changelog # # SOURCE_DATE_EPOCH: the source release date as seconds since the epoch, as # specified by <https://reproducible-builds.org/specs/source-date-epoch/> dpkg_late_eval ?= $(or $(value DPKG_CACHE_$(1)),$(eval DPKG_CACHE_$(1) := $(shell $(2)))$(value DPKG_CACHE_$(1))) DEB_SOURCE = $(call dpkg_late_eval,DEB_SOURCE,dpkg-parsechangelog -SSource) DEB_VERSION = $(call dpkg_late_eval,DEB_VERSION,dpkg-parsechangelog -SVersion) DEB_VERSION_EPOCH_UPSTREAM = $(call dpkg_late_eval,DEB_VERSION_EPOCH_UPSTREAM,echo '$(DEB_VERSION)' | sed -e 's/-[^-]*$$//') DEB_VERSION_UPSTREAM_REVISION = $(call dpkg_late_eval,DEB_VERSION_UPSTREAM_REVISION,echo '$(DEB_VERSION)' | sed -e 's/^[0-9]*://') DEB_VERSION_UPSTREAM = $(call dpkg_late_eval,DEB_VERSION_UPSTREAM,echo '$(DEB_VERSION_EPOCH_UPSTREAM)' | sed -e 's/^[0-9]*://') DEB_DISTRIBUTION = $(call dpkg_late_eval,DEB_DISTRIBUTION,dpkg-parsechangelog -SDistribution) SOURCE_DATE_EPOCH ?= $(call dpkg_late_eval,SOURCE_DATE_EPOCH,dpkg-parsechangelog -STimestamp) export SOURCE_DATE_EPOCH