Added new debian releases
This commit is contained in:
parent
6c35ae7909
commit
49673f4b81
5
debian/changelog
vendored
5
debian/changelog
vendored
|
@ -1,5 +0,0 @@
|
|||
longnowformd (0.2-1) bionic; urgency=medium
|
||||
|
||||
* No update; just pushing to the ppa again now that I've updated my keys.
|
||||
|
||||
-- Nuno Sempere <nuno.semperelh@gmail.com> Mon, 28 Jun 2021 13:11:48 +0200
|
15
debian/control
vendored
15
debian/control
vendored
|
@ -1,15 +0,0 @@
|
|||
Source: longnowformd
|
||||
Section: utils
|
||||
Priority: optional
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Build-Depends: debhelper-compat (= 12)
|
||||
Standards-Version: 4.4.1
|
||||
Homepage: https://github.com/NunoSempere/longNowForMd
|
||||
#Vcs-Browser: https://salsa.debian.org/debian/longnowformd
|
||||
#Vcs-Git: https://salsa.debian.org/debian/longnowformd.git
|
||||
|
||||
Package: longnowformd
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}
|
||||
Description: Debian package for adding archive.org links to .md files
|
||||
Debian package for adding archive.org links to markdown files in the format [...](original link) ([a](archive.org link))
|
1
debian/files
vendored
1
debian/files
vendored
|
@ -1 +0,0 @@
|
|||
longnowformd_0.2-1_source.buildinfo utils optional
|
5
debian/longnow-0.3~series/longnow-0.3~focal/debian/changelog
vendored
Normal file
5
debian/longnow-0.3~series/longnow-0.3~focal/debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
longnow (0.3~focal-1) focal; urgency=medium
|
||||
|
||||
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
|
||||
|
||||
-- Nuno Sempere <nuno.semperelh@gmail.com> Mon, 28 Jun 2021 16:29:33 +0200
|
15
debian/longnow-0.3~series/longnow-0.3~focal/debian/control
vendored
Normal file
15
debian/longnow-0.3~series/longnow-0.3~focal/debian/control
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
Source: longnow
|
||||
Section: utils
|
||||
Priority: optional
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Build-Depends: debhelper-compat (= 12)
|
||||
Standards-Version: 4.4.1
|
||||
Homepage: https://github.com/NunoSempere/longNowForMd
|
||||
#Vcs-Browser: https://salsa.debian.org/debian/longnow
|
||||
#Vcs-Git: https://salsa.debian.org/debian/longnow.git
|
||||
|
||||
Package: longnow
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}
|
||||
Description: <insert up to 60 chars description>
|
||||
<insert long description, indented with spaces>
|
|
@ -1,9 +1,14 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: longnowformd
|
||||
Upstream-Name: longnow
|
||||
Upstream-Contact: <preferred name and address to reach the upstream project>
|
||||
Source: https://github.com/NunoSempere/longNowForMd
|
||||
Source: <url://example.com>
|
||||
|
||||
Files: *
|
||||
Copyright: <years> <put author's name and email here>
|
||||
<years> <likewise for another author>
|
||||
License: MIT
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2021 Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
License: MIT
|
||||
|
1
debian/longnow-0.3~series/longnow-0.3~focal/debian/files
vendored
Normal file
1
debian/longnow-0.3~series/longnow-0.3~focal/debian/files
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
longnow_0.3~focal-1_source.buildinfo utils optional
|
96
debian/longnow-0.3~series/longnow-0.3~focal/longnow
vendored
Normal file
96
debian/longnow-0.3~series/longnow-0.3~focal/longnow
vendored
Normal file
|
@ -0,0 +1,96 @@
|
|||
#!/bin/bash
|
||||
|
||||
function getMdLinks(){ # Use: Takes a markdown file file.md, extracts all links, finds the unique ones and saves them to file.md.links
|
||||
echo ""
|
||||
echo "Extracting links..."
|
||||
|
||||
grep -Eoi '\]\((.*)\)' $1 | grep -Eo '(http|https)://[^)]+' >> "$1.links"
|
||||
## sed -i 's/www.wikiwand.com\/en/en.wikipedia.org\/wiki/g' $1
|
||||
awk '!seen[$0]++' "$1.links" > "$1.links2" && mv "$1.links2" "$1.links"
|
||||
|
||||
echo "Done."
|
||||
echo ""
|
||||
}
|
||||
|
||||
function pushToArchive(){
|
||||
# Use: Takes a txt file with one link on each line and pushes all the links to the internet archive. Saves those links to a textfile
|
||||
# References:
|
||||
# https://unix.stackexchange.com/questions/181254/how-to-use-grep-and-cut-in-script-to-obtain-website-urls-from-an-html-file
|
||||
# https://github.com/oduwsdl/archivenow
|
||||
# For the double underscore, see: https://stackoverflow.com/questions/13797087/bash-why-double-underline-for-private-functions-why-for-bash-complet/15181999
|
||||
echo "Pushing to archive.org..."
|
||||
|
||||
input=$1
|
||||
counter=1
|
||||
|
||||
rm -f "$1.archived"
|
||||
touch "$1.archived"
|
||||
|
||||
while IFS= read -r line
|
||||
do
|
||||
wait
|
||||
if [ $(($counter % 15)) -eq 0 ]
|
||||
then
|
||||
printf "\nArchive.org doesn't accept more than 15 links per min; sleeping for 1min...\n"
|
||||
sleep 1m
|
||||
fi
|
||||
echo "Url: $line"
|
||||
archiveURL=$(archivenow --ia $line)
|
||||
echo $archiveURL >> "$1.archived"
|
||||
echo $archiveURL
|
||||
counter=$((counter+1))
|
||||
echo ""
|
||||
done < "$input"
|
||||
|
||||
echo "Done."
|
||||
echo ""
|
||||
}
|
||||
|
||||
function addArchiveLinksToFile(){
|
||||
|
||||
originalFile="$1"
|
||||
originalFileTemp="$originalFile.temp"
|
||||
linksFile="$1.links"
|
||||
archivedLinksFile="$1.links.archived"
|
||||
longNowFile="$1.longnow"
|
||||
|
||||
echo "Creating longnow file @ $longNowFile..."
|
||||
|
||||
rm -f "$longNowFile"
|
||||
touch "$longNowFile"
|
||||
cp "$originalFile" "$originalFileTemp"
|
||||
|
||||
while IFS= read -r url
|
||||
do
|
||||
wait
|
||||
|
||||
archivedUrl=$(grep "$url" "$archivedLinksFile" | tail -1)
|
||||
## echo "Url: $url"
|
||||
## echo "ArchivedUrl: $archivedUrl"
|
||||
urlForSed="${url//\//\\/}"
|
||||
archiveUrlForSed="${archivedUrl//\//\\/}"
|
||||
sed -i "s/$urlForSed)/$urlForSed) ([a]($archiveUrlForSed))/g" "$1"
|
||||
done < "$linksFile"
|
||||
mv "$originalFile" "$longNowFile"
|
||||
mv "$originalFileTemp" "$originalFile"
|
||||
|
||||
echo "Done."
|
||||
|
||||
}
|
||||
|
||||
function longnow(){
|
||||
doesArchiveNowExist=$(whereis "archivenow")
|
||||
if [ "$doesArchiveNowExist" == "archivenow:" ]
|
||||
then
|
||||
echo "Required archivenow utility not found in path."
|
||||
echo "Install with \$ pip install archivenow"
|
||||
echo "(resp. \$ pip3 install archivenow)"
|
||||
echo "Or follow instructions on https://github.com/oduwsdl/archivenow"
|
||||
else
|
||||
getMdLinks $1
|
||||
pushToArchive $1.links
|
||||
addArchiveLinksToFile $1
|
||||
fi
|
||||
}
|
||||
|
||||
longnow "$1"
|
5
debian/longnow-0.3~series/longnow-0.3~groovy/debian/changelog
vendored
Normal file
5
debian/longnow-0.3~series/longnow-0.3~groovy/debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
longnow (0.3~groovy-1) groovy; urgency=medium
|
||||
|
||||
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
|
||||
|
||||
-- Nuno Sempere <nuno.semperelh@gmail.com> Mon, 28 Jun 2021 16:31:11 +0200
|
15
debian/longnow-0.3~series/longnow-0.3~groovy/debian/control
vendored
Normal file
15
debian/longnow-0.3~series/longnow-0.3~groovy/debian/control
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
Source: longnow
|
||||
Section: utils
|
||||
Priority: optional
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Build-Depends: debhelper-compat (= 12)
|
||||
Standards-Version: 4.4.1
|
||||
Homepage: https://github.com/NunoSempere/longNowForMd
|
||||
#Vcs-Browser: https://salsa.debian.org/debian/longnow
|
||||
#Vcs-Git: https://salsa.debian.org/debian/longnow.git
|
||||
|
||||
Package: longnow
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}
|
||||
Description: <insert up to 60 chars description>
|
||||
<insert long description, indented with spaces>
|
41
debian/longnow-0.3~series/longnow-0.3~groovy/debian/copyright
vendored
Normal file
41
debian/longnow-0.3~series/longnow-0.3~groovy/debian/copyright
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: longnow
|
||||
Upstream-Contact: <preferred name and address to reach the upstream project>
|
||||
Source: <url://example.com>
|
||||
|
||||
Files: *
|
||||
Copyright: <years> <put author's name and email here>
|
||||
<years> <likewise for another author>
|
||||
License: MIT
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2021 Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
License: MIT
|
||||
|
||||
License: MIT
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
.
|
||||
The above copyright notice and this permission notice shall be included
|
||||
in all copies or substantial portions of the Software.
|
||||
.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
# Please also look if there are files or directories which have a
|
||||
# different copyright/license attached and list them here.
|
||||
# Please avoid picking licenses with terms that are more restrictive than the
|
||||
# packaged work, as it may make Debian's contributions unacceptable upstream.
|
||||
#
|
||||
# If you need, there are some extra license texts available in two places:
|
||||
# /usr/share/debhelper/dh_make/licenses/
|
||||
# /usr/share/common-licenses/
|
1
debian/longnow-0.3~series/longnow-0.3~groovy/debian/files
vendored
Normal file
1
debian/longnow-0.3~series/longnow-0.3~groovy/debian/files
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
longnow_0.3~groovy-1_source.buildinfo utils optional
|
1
debian/longnow-0.3~series/longnow-0.3~groovy/debian/install
vendored
Normal file
1
debian/longnow-0.3~series/longnow-0.3~groovy/debian/install
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
longnowformd.sh usr/bin
|
25
debian/longnow-0.3~series/longnow-0.3~groovy/debian/rules
vendored
Executable file
25
debian/longnow-0.3~series/longnow-0.3~groovy/debian/rules
vendored
Executable file
|
@ -0,0 +1,25 @@
|
|||
#!/usr/bin/make -f
|
||||
# See debhelper(7) (uncomment to enable)
|
||||
# output every command that modifies files on the build system.
|
||||
#export DH_VERBOSE = 1
|
||||
|
||||
|
||||
# see FEATURE AREAS in dpkg-buildflags(1)
|
||||
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||
|
||||
# see ENVIRONMENT in dpkg-buildflags(1)
|
||||
# package maintainers to append CFLAGS
|
||||
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
|
||||
# package maintainers to append LDFLAGS
|
||||
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
||||
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
|
||||
# dh_make generated override targets
|
||||
# This is example for Cmake (See https://bugs.debian.org/641051 )
|
||||
#override_dh_auto_configure:
|
||||
# dh_auto_configure -- # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
|
||||
|
1
debian/longnow-0.3~series/longnow-0.3~groovy/debian/source/format
vendored
Normal file
1
debian/longnow-0.3~series/longnow-0.3~groovy/debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
96
debian/longnow-0.3~series/longnow-0.3~groovy/longnow
vendored
Normal file
96
debian/longnow-0.3~series/longnow-0.3~groovy/longnow
vendored
Normal file
|
@ -0,0 +1,96 @@
|
|||
#!/bin/bash
|
||||
|
||||
function getMdLinks(){ # Use: Takes a markdown file file.md, extracts all links, finds the unique ones and saves them to file.md.links
|
||||
echo ""
|
||||
echo "Extracting links..."
|
||||
|
||||
grep -Eoi '\]\((.*)\)' $1 | grep -Eo '(http|https)://[^)]+' >> "$1.links"
|
||||
## sed -i 's/www.wikiwand.com\/en/en.wikipedia.org\/wiki/g' $1
|
||||
awk '!seen[$0]++' "$1.links" > "$1.links2" && mv "$1.links2" "$1.links"
|
||||
|
||||
echo "Done."
|
||||
echo ""
|
||||
}
|
||||
|
||||
function pushToArchive(){
|
||||
# Use: Takes a txt file with one link on each line and pushes all the links to the internet archive. Saves those links to a textfile
|
||||
# References:
|
||||
# https://unix.stackexchange.com/questions/181254/how-to-use-grep-and-cut-in-script-to-obtain-website-urls-from-an-html-file
|
||||
# https://github.com/oduwsdl/archivenow
|
||||
# For the double underscore, see: https://stackoverflow.com/questions/13797087/bash-why-double-underline-for-private-functions-why-for-bash-complet/15181999
|
||||
echo "Pushing to archive.org..."
|
||||
|
||||
input=$1
|
||||
counter=1
|
||||
|
||||
rm -f "$1.archived"
|
||||
touch "$1.archived"
|
||||
|
||||
while IFS= read -r line
|
||||
do
|
||||
wait
|
||||
if [ $(($counter % 15)) -eq 0 ]
|
||||
then
|
||||
printf "\nArchive.org doesn't accept more than 15 links per min; sleeping for 1min...\n"
|
||||
sleep 1m
|
||||
fi
|
||||
echo "Url: $line"
|
||||
archiveURL=$(archivenow --ia $line)
|
||||
echo $archiveURL >> "$1.archived"
|
||||
echo $archiveURL
|
||||
counter=$((counter+1))
|
||||
echo ""
|
||||
done < "$input"
|
||||
|
||||
echo "Done."
|
||||
echo ""
|
||||
}
|
||||
|
||||
function addArchiveLinksToFile(){
|
||||
|
||||
originalFile="$1"
|
||||
originalFileTemp="$originalFile.temp"
|
||||
linksFile="$1.links"
|
||||
archivedLinksFile="$1.links.archived"
|
||||
longNowFile="$1.longnow"
|
||||
|
||||
echo "Creating longnow file @ $longNowFile..."
|
||||
|
||||
rm -f "$longNowFile"
|
||||
touch "$longNowFile"
|
||||
cp "$originalFile" "$originalFileTemp"
|
||||
|
||||
while IFS= read -r url
|
||||
do
|
||||
wait
|
||||
|
||||
archivedUrl=$(grep "$url" "$archivedLinksFile" | tail -1)
|
||||
## echo "Url: $url"
|
||||
## echo "ArchivedUrl: $archivedUrl"
|
||||
urlForSed="${url//\//\\/}"
|
||||
archiveUrlForSed="${archivedUrl//\//\\/}"
|
||||
sed -i "s/$urlForSed)/$urlForSed) ([a]($archiveUrlForSed))/g" "$1"
|
||||
done < "$linksFile"
|
||||
mv "$originalFile" "$longNowFile"
|
||||
mv "$originalFileTemp" "$originalFile"
|
||||
|
||||
echo "Done."
|
||||
|
||||
}
|
||||
|
||||
function longnow(){
|
||||
doesArchiveNowExist=$(whereis "archivenow")
|
||||
if [ "$doesArchiveNowExist" == "archivenow:" ]
|
||||
then
|
||||
echo "Required archivenow utility not found in path."
|
||||
echo "Install with \$ pip install archivenow"
|
||||
echo "(resp. \$ pip3 install archivenow)"
|
||||
echo "Or follow instructions on https://github.com/oduwsdl/archivenow"
|
||||
else
|
||||
getMdLinks $1
|
||||
pushToArchive $1.links
|
||||
addArchiveLinksToFile $1
|
||||
fi
|
||||
}
|
||||
|
||||
longnow "$1"
|
5
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/changelog
vendored
Normal file
5
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
longnow (0.3~hirsute-1) hirsute; urgency=medium
|
||||
|
||||
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
|
||||
|
||||
-- Nuno Sempere <nuno.semperelh@gmail.com> Mon, 28 Jun 2021 16:32:02 +0200
|
15
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/control
vendored
Normal file
15
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/control
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
Source: longnow
|
||||
Section: utils
|
||||
Priority: optional
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Build-Depends: debhelper-compat (= 12)
|
||||
Standards-Version: 4.4.1
|
||||
Homepage: https://github.com/NunoSempere/longNowForMd
|
||||
#Vcs-Browser: https://salsa.debian.org/debian/longnow
|
||||
#Vcs-Git: https://salsa.debian.org/debian/longnow.git
|
||||
|
||||
Package: longnow
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}
|
||||
Description: <insert up to 60 chars description>
|
||||
<insert long description, indented with spaces>
|
41
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/copyright
vendored
Normal file
41
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/copyright
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: longnow
|
||||
Upstream-Contact: <preferred name and address to reach the upstream project>
|
||||
Source: <url://example.com>
|
||||
|
||||
Files: *
|
||||
Copyright: <years> <put author's name and email here>
|
||||
<years> <likewise for another author>
|
||||
License: MIT
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2021 Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
License: MIT
|
||||
|
||||
License: MIT
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
.
|
||||
The above copyright notice and this permission notice shall be included
|
||||
in all copies or substantial portions of the Software.
|
||||
.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
# Please also look if there are files or directories which have a
|
||||
# different copyright/license attached and list them here.
|
||||
# Please avoid picking licenses with terms that are more restrictive than the
|
||||
# packaged work, as it may make Debian's contributions unacceptable upstream.
|
||||
#
|
||||
# If you need, there are some extra license texts available in two places:
|
||||
# /usr/share/debhelper/dh_make/licenses/
|
||||
# /usr/share/common-licenses/
|
1
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/files
vendored
Normal file
1
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/files
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
longnow_0.3~hirsute-1_source.buildinfo utils optional
|
1
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/install
vendored
Normal file
1
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/install
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
longnowformd.sh usr/bin
|
25
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/rules
vendored
Executable file
25
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/rules
vendored
Executable file
|
@ -0,0 +1,25 @@
|
|||
#!/usr/bin/make -f
|
||||
# See debhelper(7) (uncomment to enable)
|
||||
# output every command that modifies files on the build system.
|
||||
#export DH_VERBOSE = 1
|
||||
|
||||
|
||||
# see FEATURE AREAS in dpkg-buildflags(1)
|
||||
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||
|
||||
# see ENVIRONMENT in dpkg-buildflags(1)
|
||||
# package maintainers to append CFLAGS
|
||||
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
|
||||
# package maintainers to append LDFLAGS
|
||||
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
||||
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
|
||||
# dh_make generated override targets
|
||||
# This is example for Cmake (See https://bugs.debian.org/641051 )
|
||||
#override_dh_auto_configure:
|
||||
# dh_auto_configure -- # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
|
||||
|
1
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/source/format
vendored
Normal file
1
debian/longnow-0.3~series/longnow-0.3~hirsute/debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
96
debian/longnow-0.3~series/longnow-0.3~hirsute/longnow
vendored
Normal file
96
debian/longnow-0.3~series/longnow-0.3~hirsute/longnow
vendored
Normal file
|
@ -0,0 +1,96 @@
|
|||
#!/bin/bash
|
||||
|
||||
function getMdLinks(){ # Use: Takes a markdown file file.md, extracts all links, finds the unique ones and saves them to file.md.links
|
||||
echo ""
|
||||
echo "Extracting links..."
|
||||
|
||||
grep -Eoi '\]\((.*)\)' $1 | grep -Eo '(http|https)://[^)]+' >> "$1.links"
|
||||
## sed -i 's/www.wikiwand.com\/en/en.wikipedia.org\/wiki/g' $1
|
||||
awk '!seen[$0]++' "$1.links" > "$1.links2" && mv "$1.links2" "$1.links"
|
||||
|
||||
echo "Done."
|
||||
echo ""
|
||||
}
|
||||
|
||||
function pushToArchive(){
|
||||
# Use: Takes a txt file with one link on each line and pushes all the links to the internet archive. Saves those links to a textfile
|
||||
# References:
|
||||
# https://unix.stackexchange.com/questions/181254/how-to-use-grep-and-cut-in-script-to-obtain-website-urls-from-an-html-file
|
||||
# https://github.com/oduwsdl/archivenow
|
||||
# For the double underscore, see: https://stackoverflow.com/questions/13797087/bash-why-double-underline-for-private-functions-why-for-bash-complet/15181999
|
||||
echo "Pushing to archive.org..."
|
||||
|
||||
input=$1
|
||||
counter=1
|
||||
|
||||
rm -f "$1.archived"
|
||||
touch "$1.archived"
|
||||
|
||||
while IFS= read -r line
|
||||
do
|
||||
wait
|
||||
if [ $(($counter % 15)) -eq 0 ]
|
||||
then
|
||||
printf "\nArchive.org doesn't accept more than 15 links per min; sleeping for 1min...\n"
|
||||
sleep 1m
|
||||
fi
|
||||
echo "Url: $line"
|
||||
archiveURL=$(archivenow --ia $line)
|
||||
echo $archiveURL >> "$1.archived"
|
||||
echo $archiveURL
|
||||
counter=$((counter+1))
|
||||
echo ""
|
||||
done < "$input"
|
||||
|
||||
echo "Done."
|
||||
echo ""
|
||||
}
|
||||
|
||||
function addArchiveLinksToFile(){
|
||||
|
||||
originalFile="$1"
|
||||
originalFileTemp="$originalFile.temp"
|
||||
linksFile="$1.links"
|
||||
archivedLinksFile="$1.links.archived"
|
||||
longNowFile="$1.longnow"
|
||||
|
||||
echo "Creating longnow file @ $longNowFile..."
|
||||
|
||||
rm -f "$longNowFile"
|
||||
touch "$longNowFile"
|
||||
cp "$originalFile" "$originalFileTemp"
|
||||
|
||||
while IFS= read -r url
|
||||
do
|
||||
wait
|
||||
|
||||
archivedUrl=$(grep "$url" "$archivedLinksFile" | tail -1)
|
||||
## echo "Url: $url"
|
||||
## echo "ArchivedUrl: $archivedUrl"
|
||||
urlForSed="${url//\//\\/}"
|
||||
archiveUrlForSed="${archivedUrl//\//\\/}"
|
||||
sed -i "s/$urlForSed)/$urlForSed) ([a]($archiveUrlForSed))/g" "$1"
|
||||
done < "$linksFile"
|
||||
mv "$originalFile" "$longNowFile"
|
||||
mv "$originalFileTemp" "$originalFile"
|
||||
|
||||
echo "Done."
|
||||
|
||||
}
|
||||
|
||||
function longnow(){
|
||||
doesArchiveNowExist=$(whereis "archivenow")
|
||||
if [ "$doesArchiveNowExist" == "archivenow:" ]
|
||||
then
|
||||
echo "Required archivenow utility not found in path."
|
||||
echo "Install with \$ pip install archivenow"
|
||||
echo "(resp. \$ pip3 install archivenow)"
|
||||
echo "Or follow instructions on https://github.com/oduwsdl/archivenow"
|
||||
else
|
||||
getMdLinks $1
|
||||
pushToArchive $1.links
|
||||
addArchiveLinksToFile $1
|
||||
fi
|
||||
}
|
||||
|
||||
longnow "$1"
|
5
debian/longnow-0.3~series/longnow-0.3~impish/debian/changelog
vendored
Normal file
5
debian/longnow-0.3~series/longnow-0.3~impish/debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
longnow (0.3~impish-1) impish; urgency=medium
|
||||
|
||||
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
|
||||
|
||||
-- Nuno Sempere <nuno.semperelh@gmail.com> Mon, 28 Jun 2021 16:32:58 +0200
|
15
debian/longnow-0.3~series/longnow-0.3~impish/debian/control
vendored
Normal file
15
debian/longnow-0.3~series/longnow-0.3~impish/debian/control
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
Source: longnow
|
||||
Section: utils
|
||||
Priority: optional
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Build-Depends: debhelper-compat (= 12)
|
||||
Standards-Version: 4.4.1
|
||||
Homepage: https://github.com/NunoSempere/longNowForMd
|
||||
#Vcs-Browser: https://salsa.debian.org/debian/longnow
|
||||
#Vcs-Git: https://salsa.debian.org/debian/longnow.git
|
||||
|
||||
Package: longnow
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}
|
||||
Description: <insert up to 60 chars description>
|
||||
<insert long description, indented with spaces>
|
41
debian/longnow-0.3~series/longnow-0.3~impish/debian/copyright
vendored
Normal file
41
debian/longnow-0.3~series/longnow-0.3~impish/debian/copyright
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: longnow
|
||||
Upstream-Contact: <preferred name and address to reach the upstream project>
|
||||
Source: <url://example.com>
|
||||
|
||||
Files: *
|
||||
Copyright: <years> <put author's name and email here>
|
||||
<years> <likewise for another author>
|
||||
License: MIT
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2021 Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
License: MIT
|
||||
|
||||
License: MIT
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
.
|
||||
The above copyright notice and this permission notice shall be included
|
||||
in all copies or substantial portions of the Software.
|
||||
.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
# Please also look if there are files or directories which have a
|
||||
# different copyright/license attached and list them here.
|
||||
# Please avoid picking licenses with terms that are more restrictive than the
|
||||
# packaged work, as it may make Debian's contributions unacceptable upstream.
|
||||
#
|
||||
# If you need, there are some extra license texts available in two places:
|
||||
# /usr/share/debhelper/dh_make/licenses/
|
||||
# /usr/share/common-licenses/
|
1
debian/longnow-0.3~series/longnow-0.3~impish/debian/files
vendored
Normal file
1
debian/longnow-0.3~series/longnow-0.3~impish/debian/files
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
longnow_0.3~impish-1_source.buildinfo utils optional
|
1
debian/longnow-0.3~series/longnow-0.3~impish/debian/install
vendored
Normal file
1
debian/longnow-0.3~series/longnow-0.3~impish/debian/install
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
longnowformd.sh usr/bin
|
25
debian/longnow-0.3~series/longnow-0.3~impish/debian/rules
vendored
Executable file
25
debian/longnow-0.3~series/longnow-0.3~impish/debian/rules
vendored
Executable file
|
@ -0,0 +1,25 @@
|
|||
#!/usr/bin/make -f
|
||||
# See debhelper(7) (uncomment to enable)
|
||||
# output every command that modifies files on the build system.
|
||||
#export DH_VERBOSE = 1
|
||||
|
||||
|
||||
# see FEATURE AREAS in dpkg-buildflags(1)
|
||||
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||
|
||||
# see ENVIRONMENT in dpkg-buildflags(1)
|
||||
# package maintainers to append CFLAGS
|
||||
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
|
||||
# package maintainers to append LDFLAGS
|
||||
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
||||
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
|
||||
# dh_make generated override targets
|
||||
# This is example for Cmake (See https://bugs.debian.org/641051 )
|
||||
#override_dh_auto_configure:
|
||||
# dh_auto_configure -- # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
|
||||
|
1
debian/longnow-0.3~series/longnow-0.3~impish/debian/source/format
vendored
Normal file
1
debian/longnow-0.3~series/longnow-0.3~impish/debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
96
debian/longnow-0.3~series/longnow-0.3~impish/longnow
vendored
Normal file
96
debian/longnow-0.3~series/longnow-0.3~impish/longnow
vendored
Normal file
|
@ -0,0 +1,96 @@
|
|||
#!/bin/bash
|
||||
|
||||
function getMdLinks(){ # Use: Takes a markdown file file.md, extracts all links, finds the unique ones and saves them to file.md.links
|
||||
echo ""
|
||||
echo "Extracting links..."
|
||||
|
||||
grep -Eoi '\]\((.*)\)' $1 | grep -Eo '(http|https)://[^)]+' >> "$1.links"
|
||||
## sed -i 's/www.wikiwand.com\/en/en.wikipedia.org\/wiki/g' $1
|
||||
awk '!seen[$0]++' "$1.links" > "$1.links2" && mv "$1.links2" "$1.links"
|
||||
|
||||
echo "Done."
|
||||
echo ""
|
||||
}
|
||||
|
||||
function pushToArchive(){
|
||||
# Use: Takes a txt file with one link on each line and pushes all the links to the internet archive. Saves those links to a textfile
|
||||
# References:
|
||||
# https://unix.stackexchange.com/questions/181254/how-to-use-grep-and-cut-in-script-to-obtain-website-urls-from-an-html-file
|
||||
# https://github.com/oduwsdl/archivenow
|
||||
# For the double underscore, see: https://stackoverflow.com/questions/13797087/bash-why-double-underline-for-private-functions-why-for-bash-complet/15181999
|
||||
echo "Pushing to archive.org..."
|
||||
|
||||
input=$1
|
||||
counter=1
|
||||
|
||||
rm -f "$1.archived"
|
||||
touch "$1.archived"
|
||||
|
||||
while IFS= read -r line
|
||||
do
|
||||
wait
|
||||
if [ $(($counter % 15)) -eq 0 ]
|
||||
then
|
||||
printf "\nArchive.org doesn't accept more than 15 links per min; sleeping for 1min...\n"
|
||||
sleep 1m
|
||||
fi
|
||||
echo "Url: $line"
|
||||
archiveURL=$(archivenow --ia $line)
|
||||
echo $archiveURL >> "$1.archived"
|
||||
echo $archiveURL
|
||||
counter=$((counter+1))
|
||||
echo ""
|
||||
done < "$input"
|
||||
|
||||
echo "Done."
|
||||
echo ""
|
||||
}
|
||||
|
||||
function addArchiveLinksToFile(){
|
||||
|
||||
originalFile="$1"
|
||||
originalFileTemp="$originalFile.temp"
|
||||
linksFile="$1.links"
|
||||
archivedLinksFile="$1.links.archived"
|
||||
longNowFile="$1.longnow"
|
||||
|
||||
echo "Creating longnow file @ $longNowFile..."
|
||||
|
||||
rm -f "$longNowFile"
|
||||
touch "$longNowFile"
|
||||
cp "$originalFile" "$originalFileTemp"
|
||||
|
||||
while IFS= read -r url
|
||||
do
|
||||
wait
|
||||
|
||||
archivedUrl=$(grep "$url" "$archivedLinksFile" | tail -1)
|
||||
## echo "Url: $url"
|
||||
## echo "ArchivedUrl: $archivedUrl"
|
||||
urlForSed="${url//\//\\/}"
|
||||
archiveUrlForSed="${archivedUrl//\//\\/}"
|
||||
sed -i "s/$urlForSed)/$urlForSed) ([a]($archiveUrlForSed))/g" "$1"
|
||||
done < "$linksFile"
|
||||
mv "$originalFile" "$longNowFile"
|
||||
mv "$originalFileTemp" "$originalFile"
|
||||
|
||||
echo "Done."
|
||||
|
||||
}
|
||||
|
||||
function longnow(){
|
||||
doesArchiveNowExist=$(whereis "archivenow")
|
||||
if [ "$doesArchiveNowExist" == "archivenow:" ]
|
||||
then
|
||||
echo "Required archivenow utility not found in path."
|
||||
echo "Install with \$ pip install archivenow"
|
||||
echo "(resp. \$ pip3 install archivenow)"
|
||||
echo "Or follow instructions on https://github.com/oduwsdl/archivenow"
|
||||
else
|
||||
getMdLinks $1
|
||||
pushToArchive $1.links
|
||||
addArchiveLinksToFile $1
|
||||
fi
|
||||
}
|
||||
|
||||
longnow "$1"
|
BIN
debian/longnow-0.3~series/longnow_0.3~focal-1.debian.tar.xz
vendored
Normal file
BIN
debian/longnow-0.3~series/longnow_0.3~focal-1.debian.tar.xz
vendored
Normal file
Binary file not shown.
38
debian/longnow-0.3~series/longnow_0.3~focal-1.dsc
vendored
Normal file
38
debian/longnow-0.3~series/longnow_0.3~focal-1.dsc
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 3.0 (quilt)
|
||||
Source: longnow
|
||||
Binary: longnow
|
||||
Architecture: all
|
||||
Version: 0.3~focal-1
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Homepage: https://github.com/NunoSempere/longNowForMd
|
||||
Standards-Version: 4.4.1
|
||||
Build-Depends: debhelper-compat (= 12)
|
||||
Package-List:
|
||||
longnow deb utils optional arch=all
|
||||
Checksums-Sha1:
|
||||
75b5daeff4c99848f47228412b43b52f49ac65e0 1380 longnow_0.3~focal.orig.tar.xz
|
||||
6aae54c73f14fced9c76b5fcbc1d14349171fd4c 2080 longnow_0.3~focal-1.debian.tar.xz
|
||||
Checksums-Sha256:
|
||||
47c3de1a3ec3fa20be6e16391f58dddb8443a7c13c36d8f0920b7863fccfacff 1380 longnow_0.3~focal.orig.tar.xz
|
||||
e5433efee4e241e164389aece6a98f4a3f6113a341f0e833d6ad75a9acfe52b7 2080 longnow_0.3~focal-1.debian.tar.xz
|
||||
Files:
|
||||
7eb89879a6d206865bc33c35ce6fc93c 1380 longnow_0.3~focal.orig.tar.xz
|
||||
a4558411db4a0130d1e73f602f90c3b7 2080 longnow_0.3~focal-1.debian.tar.xz
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3OUZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kV7s8C/9sCB2kvedu6M8ohBcVzpic
|
||||
zM1VEzGjzUJrJCdmFGXkfJ5VKQ8tspEgxdKmyifS9sEYYbGM0wWf4DnHhKBAdjsU
|
||||
3caWHR+Pwuh+NdVLvBFbcNbeSCLPwNqK3YohBzmdi6TL8XsXldG8RfSnZOiR9zAi
|
||||
J7iYnRZM/ass4Hk1IDHFlC1Xz1oopHdsDDPMCHM9AWFmO5RcyOB0xIL5YWiAFs55
|
||||
1ElkmkVR57KYbN1oaqegNPkEbgR0DV01hE+eIaJvBQCUpJTxdC/dVybPmJ3lMO8q
|
||||
ojS4IcV0ERVJvjEw2UZLwwYXLlS5qtBbTqVodLR3VmrCcLlQXcqkiI0fbFqcH8Wc
|
||||
0ltviqijun12oPIX9lcpFHOwxBXB1+xnhGHJSrzJaIkYBR3d7u7qlQwoCBROV01L
|
||||
LJylVaaED5DRKnQs2quW4HPdnO737sPFk6PyaXNnV3tvJYctocng6CKUXwx2kgtn
|
||||
nzNfZM2ZQG5hjHeCMhL8tqCMOsyVsW7tZBxhNVrK9O0=
|
||||
=5ABm
|
||||
-----END PGP SIGNATURE-----
|
33
debian/longnow-0.3~series/longnow_0.3~focal-1_source.build
vendored
Normal file
33
debian/longnow-0.3~series/longnow_0.3~focal-1_source.build
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
dpkg-buildpackage -us -uc -ui -S
|
||||
dpkg-buildpackage: info: source package longnow
|
||||
dpkg-buildpackage: info: source version 0.3~focal-1
|
||||
dpkg-buildpackage: info: source distribution focal
|
||||
dpkg-buildpackage: info: source changed by Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
dpkg-source --before-build .
|
||||
fakeroot debian/rules clean
|
||||
dh clean
|
||||
dh_clean
|
||||
dpkg-source -b .
|
||||
dpkg-source: info: using source format '3.0 (quilt)'
|
||||
dpkg-source: info: building longnow using existing ./longnow_0.3~focal.orig.tar.xz
|
||||
dpkg-source: info: building longnow in longnow_0.3~focal-1.debian.tar.xz
|
||||
dpkg-source: info: building longnow in longnow_0.3~focal-1.dsc
|
||||
dpkg-genbuildinfo --build=source
|
||||
dpkg-genchanges --build=source >../longnow_0.3~focal-1_source.changes
|
||||
dpkg-genchanges: info: including full source code in upload
|
||||
dpkg-source --after-build .
|
||||
dpkg-buildpackage: info: full upload (original source is included)
|
||||
Now running lintian longnow_0.3~focal-1_source.changes ...
|
||||
E: longnow source: debian-rules-is-dh_make-template
|
||||
Finished running lintian.
|
||||
Now signing changes and any dsc files...
|
||||
signfile dsc longnow_0.3~focal-1.dsc Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
fixup_buildinfo longnow_0.3~focal-1.dsc longnow_0.3~focal-1_source.buildinfo
|
||||
signfile buildinfo longnow_0.3~focal-1_source.buildinfo Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
fixup_changes dsc longnow_0.3~focal-1.dsc longnow_0.3~focal-1_source.changes
|
||||
fixup_changes buildinfo longnow_0.3~focal-1_source.buildinfo longnow_0.3~focal-1_source.changes
|
||||
signfile changes longnow_0.3~focal-1_source.changes Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
Successfully signed dsc, buildinfo, changes files
|
193
debian/longnow-0.3~series/longnow_0.3~focal-1_source.buildinfo
vendored
Normal file
193
debian/longnow-0.3~series/longnow_0.3~focal-1_source.buildinfo
vendored
Normal file
|
@ -0,0 +1,193 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 1.0
|
||||
Source: longnow
|
||||
Binary: longnow
|
||||
Architecture: source
|
||||
Version: 0.3~focal-1
|
||||
Checksums-Md5:
|
||||
800ac7ebaaa0720ffbeed285cc6d2685 1604 longnow_0.3~focal-1.dsc
|
||||
Checksums-Sha1:
|
||||
b4a34f842083e48641901468b11a90b87f2a738e 1604 longnow_0.3~focal-1.dsc
|
||||
Checksums-Sha256:
|
||||
3c37e3e21a275fcc01b113f5c5c932eee48ec440e55a7634f2564304e0812baa 1604 longnow_0.3~focal-1.dsc
|
||||
Build-Origin: Ubuntu
|
||||
Build-Architecture: amd64
|
||||
Build-Date: Mon, 28 Jun 2021 16:29:55 +0200
|
||||
Build-Tainted-By:
|
||||
merged-usr-via-symlinks
|
||||
usr-local-has-configs
|
||||
usr-local-has-libraries
|
||||
usr-local-has-programs
|
||||
Installed-Build-Depends:
|
||||
autoconf (= 2.69-11.1),
|
||||
automake (= 1:1.16.1-4ubuntu6),
|
||||
autopoint (= 0.19.8.1-10build1),
|
||||
autotools-dev (= 20180224.1),
|
||||
base-files (= 11ubuntu5.3),
|
||||
base-passwd (= 3.5.47),
|
||||
bash (= 5.0-6ubuntu1.1),
|
||||
binutils (= 2.34-6ubuntu1.1),
|
||||
binutils-common (= 2.34-6ubuntu1.1),
|
||||
binutils-x86-64-linux-gnu (= 2.34-6ubuntu1.1),
|
||||
bsdmainutils (= 11.1.2ubuntu3),
|
||||
bsdutils (= 1:2.34-0.1ubuntu9.1),
|
||||
build-essential (= 12.8ubuntu1.1),
|
||||
bzip2 (= 1.0.8-2),
|
||||
coreutils (= 8.30-3ubuntu2),
|
||||
cpp (= 4:9.3.0-1ubuntu2),
|
||||
cpp-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
dash (= 0.5.10.2-6),
|
||||
debconf (= 1.5.73),
|
||||
debhelper (= 12.10ubuntu1),
|
||||
debianutils (= 4.9.1),
|
||||
dh-autoreconf (= 19),
|
||||
dh-strip-nondeterminism (= 1.7.0-1),
|
||||
diffutils (= 1:3.7-3),
|
||||
dpkg (= 1.19.7ubuntu3),
|
||||
dpkg-dev (= 1.19.7ubuntu3),
|
||||
dwz (= 0.13-5),
|
||||
file (= 1:5.38-4),
|
||||
findutils (= 4.7.0-1ubuntu1),
|
||||
g++ (= 4:9.3.0-1ubuntu2),
|
||||
g++-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
gcc (= 4:9.3.0-1ubuntu2),
|
||||
gcc-10-base (= 10.3.0-1ubuntu1~20.04),
|
||||
gcc-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
gcc-9-base (= 9.3.0-17ubuntu1~20.04),
|
||||
gettext (= 0.19.8.1-10build1),
|
||||
gettext-base (= 0.19.8.1-10build1),
|
||||
grep (= 3.4-1),
|
||||
groff-base (= 1.22.4-4build1),
|
||||
gzip (= 1.10-0ubuntu4),
|
||||
hostname (= 3.23),
|
||||
init-system-helpers (= 1.57),
|
||||
install-info (= 6.7.0.dfsg.2-5),
|
||||
intltool-debian (= 0.35.0+20060710.5),
|
||||
libacl1 (= 2.2.53-6),
|
||||
libarchive-zip-perl (= 1.67-2),
|
||||
libasan5 (= 9.3.0-17ubuntu1~20.04),
|
||||
libatomic1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libattr1 (= 1:2.4.48-5),
|
||||
libaudit-common (= 1:2.8.5-2ubuntu6),
|
||||
libaudit1 (= 1:2.8.5-2ubuntu6),
|
||||
libbinutils (= 2.34-6ubuntu1.1),
|
||||
libblkid1 (= 2.34-0.1ubuntu9.1),
|
||||
libbsd0 (= 0.10.0-1),
|
||||
libbz2-1.0 (= 1.0.8-2),
|
||||
libc-bin (= 2.31-0ubuntu9.2),
|
||||
libc-dev-bin (= 2.31-0ubuntu9.2),
|
||||
libc6 (= 2.31-0ubuntu9.2),
|
||||
libc6-dev (= 2.31-0ubuntu9.2),
|
||||
libcap-ng0 (= 0.7.9-2.1build1),
|
||||
libcc1-0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libcroco3 (= 0.6.13-1),
|
||||
libcrypt-dev (= 1:4.4.10-10ubuntu4),
|
||||
libcrypt1 (= 1:4.4.10-10ubuntu4),
|
||||
libctf-nobfd0 (= 2.34-6ubuntu1.1),
|
||||
libctf0 (= 2.34-6ubuntu1.1),
|
||||
libdb5.3 (= 5.3.28+dfsg1-0.6ubuntu2),
|
||||
libdebconfclient0 (= 0.251ubuntu1),
|
||||
libdebhelper-perl (= 12.10ubuntu1),
|
||||
libdpkg-perl (= 1.19.7ubuntu3),
|
||||
libelf1 (= 0.176-1.1build1),
|
||||
libffi7 (= 3.3-4),
|
||||
libfile-stripnondeterminism-perl (= 1.7.0-1),
|
||||
libgcc-9-dev (= 9.3.0-17ubuntu1~20.04),
|
||||
libgcc-s1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libgcrypt20 (= 1.8.5-5ubuntu1),
|
||||
libgdbm-compat4 (= 1.18.1-5),
|
||||
libgdbm6 (= 1.18.1-5),
|
||||
libglib2.0-0 (= 2.64.6-1~ubuntu20.04.3),
|
||||
libgmp10 (= 2:6.2.0+dfsg-4),
|
||||
libgomp1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libgpg-error0 (= 1.37-1),
|
||||
libicu66 (= 66.1-2ubuntu2),
|
||||
libisl22 (= 0.22.1-1),
|
||||
libitm1 (= 10.3.0-1ubuntu1~20.04),
|
||||
liblsan0 (= 10.3.0-1ubuntu1~20.04),
|
||||
liblz4-1 (= 1.9.2-2ubuntu0.20.04.1),
|
||||
liblzma5 (= 5.2.4-1ubuntu1),
|
||||
libmagic-mgc (= 1:5.38-4),
|
||||
libmagic1 (= 1:5.38-4),
|
||||
libmount1 (= 2.34-0.1ubuntu9.1),
|
||||
libmpc3 (= 1.1.0-1),
|
||||
libmpfr6 (= 4.0.2-1),
|
||||
libpam-modules (= 1.3.1-5ubuntu4.1),
|
||||
libpam-modules-bin (= 1.3.1-5ubuntu4.1),
|
||||
libpam-runtime (= 1.3.1-5ubuntu4.1),
|
||||
libpam0g (= 1.3.1-5ubuntu4.1),
|
||||
libpcre2-8-0 (= 10.34-7),
|
||||
libpcre3 (= 2:8.39-12build1),
|
||||
libperl5.30 (= 5.30.0-9ubuntu0.2),
|
||||
libpipeline1 (= 1.5.2-2build1),
|
||||
libquadmath0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libseccomp2 (= 2.5.1-1ubuntu1~20.04.1),
|
||||
libselinux1 (= 3.0-1build2),
|
||||
libsigsegv2 (= 2.12-2),
|
||||
libsmartcols1 (= 2.34-0.1ubuntu9.1),
|
||||
libstdc++-9-dev (= 9.3.0-17ubuntu1~20.04),
|
||||
libstdc++6 (= 10.3.0-1ubuntu1~20.04),
|
||||
libsub-override-perl (= 0.09-2),
|
||||
libsystemd0 (= 245.4-4ubuntu3.6),
|
||||
libtinfo6 (= 6.2-0ubuntu2),
|
||||
libtool (= 2.4.6-14),
|
||||
libtsan0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libubsan1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libuchardet0 (= 0.0.6-3build1),
|
||||
libudev1 (= 245.4-4ubuntu3.6),
|
||||
libunistring2 (= 0.9.10-2),
|
||||
libuuid1 (= 2.34-0.1ubuntu9.1),
|
||||
libxml2 (= 2.9.10+dfsg-5ubuntu0.20.04.1),
|
||||
libzstd1 (= 1.4.4+dfsg-3ubuntu0.1),
|
||||
linux-libc-dev (= 5.4.0-77.86),
|
||||
login (= 1:4.8.1-1ubuntu5.20.04),
|
||||
lsb-base (= 11.1.0ubuntu2),
|
||||
m4 (= 1.4.18-4),
|
||||
make (= 4.2.1-1.2),
|
||||
man-db (= 2.9.1-1),
|
||||
mawk (= 1.3.4.20200120-2),
|
||||
ncurses-base (= 6.2-0ubuntu2),
|
||||
ncurses-bin (= 6.2-0ubuntu2),
|
||||
patch (= 2.7.6-6),
|
||||
perl (= 5.30.0-9ubuntu0.2),
|
||||
perl-base (= 5.30.0-9ubuntu0.2),
|
||||
perl-modules-5.30 (= 5.30.0-9ubuntu0.2),
|
||||
po-debconf (= 1.0.21),
|
||||
sed (= 4.7-1),
|
||||
sensible-utils (= 0.0.12+nmu1),
|
||||
sysvinit-utils (= 2.96-2.1ubuntu1),
|
||||
tar (= 1.30+dfsg-7ubuntu0.20.04.1),
|
||||
tzdata (= 2021a-0ubuntu0.20.04),
|
||||
util-linux (= 2.34-0.1ubuntu9.1),
|
||||
xz-utils (= 5.2.4-1ubuntu1),
|
||||
zlib1g (= 1:1.2.11.dfsg-2ubuntu1.2)
|
||||
Environment:
|
||||
DEB_BUILD_OPTIONS="parallel=4"
|
||||
LANG="en_US.UTF-8"
|
||||
LC_ADDRESS="de_AT.UTF-8"
|
||||
LC_IDENTIFICATION="de_AT.UTF-8"
|
||||
LC_MEASUREMENT="de_AT.UTF-8"
|
||||
LC_MONETARY="de_AT.UTF-8"
|
||||
LC_NAME="de_AT.UTF-8"
|
||||
LC_NUMERIC="de_AT.UTF-8"
|
||||
LC_PAPER="de_AT.UTF-8"
|
||||
LC_TELEPHONE="de_AT.UTF-8"
|
||||
LC_TIME="de_AT.UTF-8"
|
||||
SOURCE_DATE_EPOCH="1624890573"
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3OgZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kVwYgC/0UrAREtwqkziLU7Njbkw1Z
|
||||
4vP6/FouPuol0aVL98m8ABtPT20lTsQ9fpAMkO6iSeacrNdLy+pBeM+7D1Se3JU4
|
||||
ErRm+YcnD62iNVDcuyDFgvjJmp5pX/Cj6pp2ZT+o9t7rFV66rtiu5tExAIz4zrbO
|
||||
aHExCybikToYkWDzraRX46wM9OhTDEdEz/lrTRQbdST/bIJY0XDkc5nM7AGocwT3
|
||||
9JzMZcUvrPTc0ej3v8kpLLiUrH1gNACc8AjJZIAKjCtSb1v0kwFAr0TLCwIssTVK
|
||||
5LWnKz3y7Rib9okWgDhaZERt37l8eNtu4tTXha6pV30XszBXNuqR7Mg1eXRqFlop
|
||||
PX8pZntHOYx+w2vkBRcMtMC7c+OMd8D2jTSxeEAi9sQcQsPr0RidVlYE5jhux9Ub
|
||||
ySsIAXgkfCmdo4N66fWXqu2bBOoy6t8f+NvlQungvvhoy9d2gp8soRUFdASDSIn8
|
||||
wlHXl9zxFftOtHWYTmgF655WFKPeb0i/VvuCcNbKqvY=
|
||||
=qqYY
|
||||
-----END PGP SIGNATURE-----
|
46
debian/longnow-0.3~series/longnow_0.3~focal-1_source.changes
vendored
Normal file
46
debian/longnow-0.3~series/longnow_0.3~focal-1_source.changes
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 1.8
|
||||
Date: Mon, 28 Jun 2021 16:29:33 +0200
|
||||
Source: longnow
|
||||
Architecture: source
|
||||
Version: 0.3~focal-1
|
||||
Distribution: focal
|
||||
Urgency: medium
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Changed-By: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Changes:
|
||||
longnow (0.3~focal-1) focal; urgency=medium
|
||||
.
|
||||
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
|
||||
Checksums-Sha1:
|
||||
b4a34f842083e48641901468b11a90b87f2a738e 1604 longnow_0.3~focal-1.dsc
|
||||
75b5daeff4c99848f47228412b43b52f49ac65e0 1380 longnow_0.3~focal.orig.tar.xz
|
||||
6aae54c73f14fced9c76b5fcbc1d14349171fd4c 2080 longnow_0.3~focal-1.debian.tar.xz
|
||||
e85a81e5c09bf2dda64634194e8d1aea527185fc 6156 longnow_0.3~focal-1_source.buildinfo
|
||||
Checksums-Sha256:
|
||||
3c37e3e21a275fcc01b113f5c5c932eee48ec440e55a7634f2564304e0812baa 1604 longnow_0.3~focal-1.dsc
|
||||
47c3de1a3ec3fa20be6e16391f58dddb8443a7c13c36d8f0920b7863fccfacff 1380 longnow_0.3~focal.orig.tar.xz
|
||||
e5433efee4e241e164389aece6a98f4a3f6113a341f0e833d6ad75a9acfe52b7 2080 longnow_0.3~focal-1.debian.tar.xz
|
||||
a96103bd8850797f3ad7782fde196d5c76cd89a69d2072f83c1c15e638e06f9e 6156 longnow_0.3~focal-1_source.buildinfo
|
||||
Files:
|
||||
800ac7ebaaa0720ffbeed285cc6d2685 1604 utils optional longnow_0.3~focal-1.dsc
|
||||
7eb89879a6d206865bc33c35ce6fc93c 1380 utils optional longnow_0.3~focal.orig.tar.xz
|
||||
a4558411db4a0130d1e73f602f90c3b7 2080 utils optional longnow_0.3~focal-1.debian.tar.xz
|
||||
36d8ec4520714b4bc7b29897fd5bfa7b 6156 utils optional longnow_0.3~focal-1_source.buildinfo
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3OgZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kVyQdDAC1UB1z3urXDm2kye2lx8oM
|
||||
ojtf+NEDf76HUJ9JriEzk6jtjS1MYf3YzjaL/kab/Zs2dKHskHw+i88CXdSiM3XF
|
||||
g8/ldXHezp/RFTuzcvL0kFjQcRHXZZf8V9Dn99hvFEsE3s2dQv7bD1WoT5FfXzg9
|
||||
cYpgkoAPyardYg+dRVsihkk9WuC3xO+4qODYm4rooOp1qHEugl5Oi8iiLc4zTTSP
|
||||
vba0kFW/xwFwGPreH1zAW4KpZIduYF7nlAr2U4va7CykXp6qQocaIEg44cFdDjd2
|
||||
KhF3yVfW3F4EiOLW1BlIj9KfE0zHeCxLK57CdkJAuhYm8FATvklm47kKDFSpDpg/
|
||||
nyqsbwxqoRDmwX4orgfMJbAoLt62mgRmjMTkJKPbqpoRLexc3R37LQebL4kPQ30I
|
||||
n9VGD2TUSUZL6Sv99sQmRISzGOOtdWq+Iz7eLN/D5XWXwixr62gLoe5vXnfYJ9fs
|
||||
C7/cdOtYg13kqMQyodMrx1DIwbxRwbMxN9Q0nEYVMzE=
|
||||
=CHUG
|
||||
-----END PGP SIGNATURE-----
|
5
debian/longnow-0.3~series/longnow_0.3~focal-1_source.ppa.upload
vendored
Normal file
5
debian/longnow-0.3~series/longnow_0.3~focal-1_source.ppa.upload
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
Successfully uploaded longnow_0.3~focal-1.dsc to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~focal.orig.tar.xz to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~focal-1.debian.tar.xz to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~focal-1_source.buildinfo to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~focal-1_source.changes to ppa.launchpad.net for ppa.
|
BIN
debian/longnow-0.3~series/longnow_0.3~focal.orig.tar.xz
vendored
Normal file
BIN
debian/longnow-0.3~series/longnow_0.3~focal.orig.tar.xz
vendored
Normal file
Binary file not shown.
BIN
debian/longnow-0.3~series/longnow_0.3~groovy-1.debian.tar.xz
vendored
Normal file
BIN
debian/longnow-0.3~series/longnow_0.3~groovy-1.debian.tar.xz
vendored
Normal file
Binary file not shown.
38
debian/longnow-0.3~series/longnow_0.3~groovy-1.dsc
vendored
Normal file
38
debian/longnow-0.3~series/longnow_0.3~groovy-1.dsc
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 3.0 (quilt)
|
||||
Source: longnow
|
||||
Binary: longnow
|
||||
Architecture: all
|
||||
Version: 0.3~groovy-1
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Homepage: https://github.com/NunoSempere/longNowForMd
|
||||
Standards-Version: 4.4.1
|
||||
Build-Depends: debhelper-compat (= 12)
|
||||
Package-List:
|
||||
longnow deb utils optional arch=all
|
||||
Checksums-Sha1:
|
||||
361d1aa32d083c6ed038c122dccfa50d9865867e 1384 longnow_0.3~groovy.orig.tar.xz
|
||||
d12e1960bd91f5d5c1f27b20e76a290a777fc22c 2080 longnow_0.3~groovy-1.debian.tar.xz
|
||||
Checksums-Sha256:
|
||||
70b3705dd60aaa4e759ddd83defdbeb87f8178f81172e8368fa49d22d2518ad6 1384 longnow_0.3~groovy.orig.tar.xz
|
||||
6317651b8da73f6270eea39170048aac62602f31d448d60e48b76b86b7543922 2080 longnow_0.3~groovy-1.debian.tar.xz
|
||||
Files:
|
||||
76d8ecc9ab91051a8fb69d1c022802a5 1384 longnow_0.3~groovy.orig.tar.xz
|
||||
70ea3bb94d906a934de115427bc29012 2080 longnow_0.3~groovy-1.debian.tar.xz
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3UwZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kV9cfDACUBCxodvSsnVGFIoMBjFiD
|
||||
0SQfYKghqDc8zHa4xCaES7I7nb0a6QQf1bMXW5UthXciiVO8LCO0CzPsPcKHAQKg
|
||||
adM5oWeBb0pxCrIQDybXonzDj11Vkocz8z5JaEAmeje1ctwQzlMt1TWFeDhZiqQl
|
||||
g80mB7wrZTqvhzzcRshVW078iCq6x0IKTjcqk8Vbhf9MxcdDIuuUIDQCUovv2wY1
|
||||
gGblFGFY9yWua6AesOH2WY1cFl7v1CbHp7YWvSfZaWh/2osll6ixKyVNBB4ditUz
|
||||
eIrlx38nEldavguNpKqvgoPRLED4tmmdpmui0+au4PWFWhlIKfr4Z/14iQqdQwz0
|
||||
kvs5dS6UR8BDCqMMGUZKE4FF/y39NLZgur8wgmb8UL8hJs2QwARuINcqyiXAXMiZ
|
||||
iSGUvWAVJqye54IqYh3qzUfZg6S37PFcvr0d5x6t5S55xGOBQMMuRGFLcZTzYPfM
|
||||
ixVSMPLaiyE1lImSX5Tt2d3BjV2A6D5OlT5mJxsqvFg=
|
||||
=M5We
|
||||
-----END PGP SIGNATURE-----
|
33
debian/longnow-0.3~series/longnow_0.3~groovy-1_source.build
vendored
Normal file
33
debian/longnow-0.3~series/longnow_0.3~groovy-1_source.build
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
dpkg-buildpackage -us -uc -ui -S
|
||||
dpkg-buildpackage: info: source package longnow
|
||||
dpkg-buildpackage: info: source version 0.3~groovy-1
|
||||
dpkg-buildpackage: info: source distribution groovy
|
||||
dpkg-buildpackage: info: source changed by Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
dpkg-source --before-build .
|
||||
fakeroot debian/rules clean
|
||||
dh clean
|
||||
dh_clean
|
||||
dpkg-source -b .
|
||||
dpkg-source: info: using source format '3.0 (quilt)'
|
||||
dpkg-source: info: building longnow using existing ./longnow_0.3~groovy.orig.tar.xz
|
||||
dpkg-source: info: building longnow in longnow_0.3~groovy-1.debian.tar.xz
|
||||
dpkg-source: info: building longnow in longnow_0.3~groovy-1.dsc
|
||||
dpkg-genbuildinfo --build=source
|
||||
dpkg-genchanges --build=source >../longnow_0.3~groovy-1_source.changes
|
||||
dpkg-genchanges: info: including full source code in upload
|
||||
dpkg-source --after-build .
|
||||
dpkg-buildpackage: info: full upload (original source is included)
|
||||
Now running lintian longnow_0.3~groovy-1_source.changes ...
|
||||
E: longnow source: debian-rules-is-dh_make-template
|
||||
Finished running lintian.
|
||||
Now signing changes and any dsc files...
|
||||
signfile dsc longnow_0.3~groovy-1.dsc Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
fixup_buildinfo longnow_0.3~groovy-1.dsc longnow_0.3~groovy-1_source.buildinfo
|
||||
signfile buildinfo longnow_0.3~groovy-1_source.buildinfo Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
fixup_changes dsc longnow_0.3~groovy-1.dsc longnow_0.3~groovy-1_source.changes
|
||||
fixup_changes buildinfo longnow_0.3~groovy-1_source.buildinfo longnow_0.3~groovy-1_source.changes
|
||||
signfile changes longnow_0.3~groovy-1_source.changes Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
Successfully signed dsc, buildinfo, changes files
|
193
debian/longnow-0.3~series/longnow_0.3~groovy-1_source.buildinfo
vendored
Normal file
193
debian/longnow-0.3~series/longnow_0.3~groovy-1_source.buildinfo
vendored
Normal file
|
@ -0,0 +1,193 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 1.0
|
||||
Source: longnow
|
||||
Binary: longnow
|
||||
Architecture: source
|
||||
Version: 0.3~groovy-1
|
||||
Checksums-Md5:
|
||||
7807c86cc60b74ec20075a0d3428ce44 1611 longnow_0.3~groovy-1.dsc
|
||||
Checksums-Sha1:
|
||||
ece17b895c494e75838712b93a1e2e1534e80603 1611 longnow_0.3~groovy-1.dsc
|
||||
Checksums-Sha256:
|
||||
4c732e0d0256395cf27132103c2856d8edbcb8a12cecfabfce37c080028dfb0b 1611 longnow_0.3~groovy-1.dsc
|
||||
Build-Origin: Ubuntu
|
||||
Build-Architecture: amd64
|
||||
Build-Date: Mon, 28 Jun 2021 16:31:38 +0200
|
||||
Build-Tainted-By:
|
||||
merged-usr-via-symlinks
|
||||
usr-local-has-configs
|
||||
usr-local-has-libraries
|
||||
usr-local-has-programs
|
||||
Installed-Build-Depends:
|
||||
autoconf (= 2.69-11.1),
|
||||
automake (= 1:1.16.1-4ubuntu6),
|
||||
autopoint (= 0.19.8.1-10build1),
|
||||
autotools-dev (= 20180224.1),
|
||||
base-files (= 11ubuntu5.3),
|
||||
base-passwd (= 3.5.47),
|
||||
bash (= 5.0-6ubuntu1.1),
|
||||
binutils (= 2.34-6ubuntu1.1),
|
||||
binutils-common (= 2.34-6ubuntu1.1),
|
||||
binutils-x86-64-linux-gnu (= 2.34-6ubuntu1.1),
|
||||
bsdmainutils (= 11.1.2ubuntu3),
|
||||
bsdutils (= 1:2.34-0.1ubuntu9.1),
|
||||
build-essential (= 12.8ubuntu1.1),
|
||||
bzip2 (= 1.0.8-2),
|
||||
coreutils (= 8.30-3ubuntu2),
|
||||
cpp (= 4:9.3.0-1ubuntu2),
|
||||
cpp-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
dash (= 0.5.10.2-6),
|
||||
debconf (= 1.5.73),
|
||||
debhelper (= 12.10ubuntu1),
|
||||
debianutils (= 4.9.1),
|
||||
dh-autoreconf (= 19),
|
||||
dh-strip-nondeterminism (= 1.7.0-1),
|
||||
diffutils (= 1:3.7-3),
|
||||
dpkg (= 1.19.7ubuntu3),
|
||||
dpkg-dev (= 1.19.7ubuntu3),
|
||||
dwz (= 0.13-5),
|
||||
file (= 1:5.38-4),
|
||||
findutils (= 4.7.0-1ubuntu1),
|
||||
g++ (= 4:9.3.0-1ubuntu2),
|
||||
g++-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
gcc (= 4:9.3.0-1ubuntu2),
|
||||
gcc-10-base (= 10.3.0-1ubuntu1~20.04),
|
||||
gcc-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
gcc-9-base (= 9.3.0-17ubuntu1~20.04),
|
||||
gettext (= 0.19.8.1-10build1),
|
||||
gettext-base (= 0.19.8.1-10build1),
|
||||
grep (= 3.4-1),
|
||||
groff-base (= 1.22.4-4build1),
|
||||
gzip (= 1.10-0ubuntu4),
|
||||
hostname (= 3.23),
|
||||
init-system-helpers (= 1.57),
|
||||
install-info (= 6.7.0.dfsg.2-5),
|
||||
intltool-debian (= 0.35.0+20060710.5),
|
||||
libacl1 (= 2.2.53-6),
|
||||
libarchive-zip-perl (= 1.67-2),
|
||||
libasan5 (= 9.3.0-17ubuntu1~20.04),
|
||||
libatomic1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libattr1 (= 1:2.4.48-5),
|
||||
libaudit-common (= 1:2.8.5-2ubuntu6),
|
||||
libaudit1 (= 1:2.8.5-2ubuntu6),
|
||||
libbinutils (= 2.34-6ubuntu1.1),
|
||||
libblkid1 (= 2.34-0.1ubuntu9.1),
|
||||
libbsd0 (= 0.10.0-1),
|
||||
libbz2-1.0 (= 1.0.8-2),
|
||||
libc-bin (= 2.31-0ubuntu9.2),
|
||||
libc-dev-bin (= 2.31-0ubuntu9.2),
|
||||
libc6 (= 2.31-0ubuntu9.2),
|
||||
libc6-dev (= 2.31-0ubuntu9.2),
|
||||
libcap-ng0 (= 0.7.9-2.1build1),
|
||||
libcc1-0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libcroco3 (= 0.6.13-1),
|
||||
libcrypt-dev (= 1:4.4.10-10ubuntu4),
|
||||
libcrypt1 (= 1:4.4.10-10ubuntu4),
|
||||
libctf-nobfd0 (= 2.34-6ubuntu1.1),
|
||||
libctf0 (= 2.34-6ubuntu1.1),
|
||||
libdb5.3 (= 5.3.28+dfsg1-0.6ubuntu2),
|
||||
libdebconfclient0 (= 0.251ubuntu1),
|
||||
libdebhelper-perl (= 12.10ubuntu1),
|
||||
libdpkg-perl (= 1.19.7ubuntu3),
|
||||
libelf1 (= 0.176-1.1build1),
|
||||
libffi7 (= 3.3-4),
|
||||
libfile-stripnondeterminism-perl (= 1.7.0-1),
|
||||
libgcc-9-dev (= 9.3.0-17ubuntu1~20.04),
|
||||
libgcc-s1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libgcrypt20 (= 1.8.5-5ubuntu1),
|
||||
libgdbm-compat4 (= 1.18.1-5),
|
||||
libgdbm6 (= 1.18.1-5),
|
||||
libglib2.0-0 (= 2.64.6-1~ubuntu20.04.3),
|
||||
libgmp10 (= 2:6.2.0+dfsg-4),
|
||||
libgomp1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libgpg-error0 (= 1.37-1),
|
||||
libicu66 (= 66.1-2ubuntu2),
|
||||
libisl22 (= 0.22.1-1),
|
||||
libitm1 (= 10.3.0-1ubuntu1~20.04),
|
||||
liblsan0 (= 10.3.0-1ubuntu1~20.04),
|
||||
liblz4-1 (= 1.9.2-2ubuntu0.20.04.1),
|
||||
liblzma5 (= 5.2.4-1ubuntu1),
|
||||
libmagic-mgc (= 1:5.38-4),
|
||||
libmagic1 (= 1:5.38-4),
|
||||
libmount1 (= 2.34-0.1ubuntu9.1),
|
||||
libmpc3 (= 1.1.0-1),
|
||||
libmpfr6 (= 4.0.2-1),
|
||||
libpam-modules (= 1.3.1-5ubuntu4.1),
|
||||
libpam-modules-bin (= 1.3.1-5ubuntu4.1),
|
||||
libpam-runtime (= 1.3.1-5ubuntu4.1),
|
||||
libpam0g (= 1.3.1-5ubuntu4.1),
|
||||
libpcre2-8-0 (= 10.34-7),
|
||||
libpcre3 (= 2:8.39-12build1),
|
||||
libperl5.30 (= 5.30.0-9ubuntu0.2),
|
||||
libpipeline1 (= 1.5.2-2build1),
|
||||
libquadmath0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libseccomp2 (= 2.5.1-1ubuntu1~20.04.1),
|
||||
libselinux1 (= 3.0-1build2),
|
||||
libsigsegv2 (= 2.12-2),
|
||||
libsmartcols1 (= 2.34-0.1ubuntu9.1),
|
||||
libstdc++-9-dev (= 9.3.0-17ubuntu1~20.04),
|
||||
libstdc++6 (= 10.3.0-1ubuntu1~20.04),
|
||||
libsub-override-perl (= 0.09-2),
|
||||
libsystemd0 (= 245.4-4ubuntu3.6),
|
||||
libtinfo6 (= 6.2-0ubuntu2),
|
||||
libtool (= 2.4.6-14),
|
||||
libtsan0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libubsan1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libuchardet0 (= 0.0.6-3build1),
|
||||
libudev1 (= 245.4-4ubuntu3.6),
|
||||
libunistring2 (= 0.9.10-2),
|
||||
libuuid1 (= 2.34-0.1ubuntu9.1),
|
||||
libxml2 (= 2.9.10+dfsg-5ubuntu0.20.04.1),
|
||||
libzstd1 (= 1.4.4+dfsg-3ubuntu0.1),
|
||||
linux-libc-dev (= 5.4.0-77.86),
|
||||
login (= 1:4.8.1-1ubuntu5.20.04),
|
||||
lsb-base (= 11.1.0ubuntu2),
|
||||
m4 (= 1.4.18-4),
|
||||
make (= 4.2.1-1.2),
|
||||
man-db (= 2.9.1-1),
|
||||
mawk (= 1.3.4.20200120-2),
|
||||
ncurses-base (= 6.2-0ubuntu2),
|
||||
ncurses-bin (= 6.2-0ubuntu2),
|
||||
patch (= 2.7.6-6),
|
||||
perl (= 5.30.0-9ubuntu0.2),
|
||||
perl-base (= 5.30.0-9ubuntu0.2),
|
||||
perl-modules-5.30 (= 5.30.0-9ubuntu0.2),
|
||||
po-debconf (= 1.0.21),
|
||||
sed (= 4.7-1),
|
||||
sensible-utils (= 0.0.12+nmu1),
|
||||
sysvinit-utils (= 2.96-2.1ubuntu1),
|
||||
tar (= 1.30+dfsg-7ubuntu0.20.04.1),
|
||||
tzdata (= 2021a-0ubuntu0.20.04),
|
||||
util-linux (= 2.34-0.1ubuntu9.1),
|
||||
xz-utils (= 5.2.4-1ubuntu1),
|
||||
zlib1g (= 1:1.2.11.dfsg-2ubuntu1.2)
|
||||
Environment:
|
||||
DEB_BUILD_OPTIONS="parallel=4"
|
||||
LANG="en_US.UTF-8"
|
||||
LC_ADDRESS="de_AT.UTF-8"
|
||||
LC_IDENTIFICATION="de_AT.UTF-8"
|
||||
LC_MEASUREMENT="de_AT.UTF-8"
|
||||
LC_MONETARY="de_AT.UTF-8"
|
||||
LC_NAME="de_AT.UTF-8"
|
||||
LC_NUMERIC="de_AT.UTF-8"
|
||||
LC_PAPER="de_AT.UTF-8"
|
||||
LC_TELEPHONE="de_AT.UTF-8"
|
||||
LC_TIME="de_AT.UTF-8"
|
||||
SOURCE_DATE_EPOCH="1624890671"
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3UwZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kV+NTDACah+InbvkGnWx208k8xP/o
|
||||
1exMcIup72cVnZTQTplWO+9bi00UTHLKjM2rs2rif6602vcmzkwIlh3Uw5X9bpJ0
|
||||
tFOTZrRVwO/oThtnl3QDO1p3I2iIESMATGblgJyMAEQGo/l89jj+7aQsPEUyNcyB
|
||||
+0zH2m9C3W8z+Nnk1KdWR7qR6W9JEZB2ki3scoyANvJ9hl/mTFyvGR5Es0eL+bgF
|
||||
i3l01Pu8VKdnh/p8g/eh077Lwr2cX1UF4zDepyX8PjLjKSFC9mhq6vk9krzbO7ym
|
||||
kB78Df3Qm9cOuZClame3z/gJipVpcyrqhre1dzEk+x1ZaeMEIsIZgbm2FCGYe00w
|
||||
hnBAJxUkioYqfYKejZh5Xm6VEUBa3m3ISt3vA0zsWbPQoB8xlok3hLr05/ZFXnSz
|
||||
na3T49NUQn7kVbyFkk09d5nAt0aFNKtLHWjTWfc/3voIphWxqaTQRa3AyAG1pFm1
|
||||
tmWxakDMUkAPCcALnjbQlyN3/MMf5d5HV3DEFQxGGE4=
|
||||
=eGvo
|
||||
-----END PGP SIGNATURE-----
|
46
debian/longnow-0.3~series/longnow_0.3~groovy-1_source.changes
vendored
Normal file
46
debian/longnow-0.3~series/longnow_0.3~groovy-1_source.changes
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 1.8
|
||||
Date: Mon, 28 Jun 2021 16:31:11 +0200
|
||||
Source: longnow
|
||||
Architecture: source
|
||||
Version: 0.3~groovy-1
|
||||
Distribution: groovy
|
||||
Urgency: medium
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Changed-By: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Changes:
|
||||
longnow (0.3~groovy-1) groovy; urgency=medium
|
||||
.
|
||||
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
|
||||
Checksums-Sha1:
|
||||
ece17b895c494e75838712b93a1e2e1534e80603 1611 longnow_0.3~groovy-1.dsc
|
||||
361d1aa32d083c6ed038c122dccfa50d9865867e 1384 longnow_0.3~groovy.orig.tar.xz
|
||||
d12e1960bd91f5d5c1f27b20e76a290a777fc22c 2080 longnow_0.3~groovy-1.debian.tar.xz
|
||||
33c9cf224511c94dd7d578b39aa0f30487098442 6160 longnow_0.3~groovy-1_source.buildinfo
|
||||
Checksums-Sha256:
|
||||
4c732e0d0256395cf27132103c2856d8edbcb8a12cecfabfce37c080028dfb0b 1611 longnow_0.3~groovy-1.dsc
|
||||
70b3705dd60aaa4e759ddd83defdbeb87f8178f81172e8368fa49d22d2518ad6 1384 longnow_0.3~groovy.orig.tar.xz
|
||||
6317651b8da73f6270eea39170048aac62602f31d448d60e48b76b86b7543922 2080 longnow_0.3~groovy-1.debian.tar.xz
|
||||
9284d3c1447040a05f346c8a1ebdbaa2c95c63b3e6ad2e4ddf7a8906b04dd1f2 6160 longnow_0.3~groovy-1_source.buildinfo
|
||||
Files:
|
||||
7807c86cc60b74ec20075a0d3428ce44 1611 utils optional longnow_0.3~groovy-1.dsc
|
||||
76d8ecc9ab91051a8fb69d1c022802a5 1384 utils optional longnow_0.3~groovy.orig.tar.xz
|
||||
70ea3bb94d906a934de115427bc29012 2080 utils optional longnow_0.3~groovy-1.debian.tar.xz
|
||||
af387d59a77193b30bb6754630658f6a 6160 utils optional longnow_0.3~groovy-1_source.buildinfo
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3U0ZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kV2v8C/9rtxfl08ZcAZE7QFeAbP4h
|
||||
I5mkPw+BqlgX65vJ4UT0XFBPWhvlSXZ7ozFwnpuMipUHL1uCRrH2L2w5WwxCIO1R
|
||||
Ah/6fLZgUY/vjz/jbDNFoABAeHoakk7Y6MNEuAriO4TiOPCRdn6qQ1P+XsQq98fP
|
||||
FS8c4FD92rxo6vXBLCCCK5wDV9kwZVFogpp7jGB4ODrsUDoVN+nPX7f6j4ltrzOu
|
||||
enAToNeHVirkxOsCAKJll30maASlDp6a9F6PIkwkYKNTO1s9k1A9RunEtIoXpOJq
|
||||
y5tDGfGfgULEhPUJ1US0Css/9FIVebBCSyFhikGGGe/HCl5/5S3DkVXrZR1pihvw
|
||||
kmMxT3Y8JQO9ga01EdmaJ3O9/j5ah9VYRaK/HZYxuIcX49uT0ewOMP+9SQRYzozv
|
||||
DqTVRP+E3Ti8hCp2+hMSMvJfqq9EESkMFtGRYJvRNtZOhZkLWHGug32CnYH/GybZ
|
||||
3OAs+gzc1gZtAhyzm3sI5TZiqxBn5KIa84wbcFUqkBQ=
|
||||
=H6KC
|
||||
-----END PGP SIGNATURE-----
|
5
debian/longnow-0.3~series/longnow_0.3~groovy-1_source.ppa.upload
vendored
Normal file
5
debian/longnow-0.3~series/longnow_0.3~groovy-1_source.ppa.upload
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
Successfully uploaded longnow_0.3~groovy-1.dsc to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~groovy.orig.tar.xz to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~groovy-1.debian.tar.xz to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~groovy-1_source.buildinfo to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~groovy-1_source.changes to ppa.launchpad.net for ppa.
|
BIN
debian/longnow-0.3~series/longnow_0.3~groovy.orig.tar.xz
vendored
Normal file
BIN
debian/longnow-0.3~series/longnow_0.3~groovy.orig.tar.xz
vendored
Normal file
Binary file not shown.
BIN
debian/longnow-0.3~series/longnow_0.3~hirsute-1.debian.tar.xz
vendored
Normal file
BIN
debian/longnow-0.3~series/longnow_0.3~hirsute-1.debian.tar.xz
vendored
Normal file
Binary file not shown.
38
debian/longnow-0.3~series/longnow_0.3~hirsute-1.dsc
vendored
Normal file
38
debian/longnow-0.3~series/longnow_0.3~hirsute-1.dsc
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 3.0 (quilt)
|
||||
Source: longnow
|
||||
Binary: longnow
|
||||
Architecture: all
|
||||
Version: 0.3~hirsute-1
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Homepage: https://github.com/NunoSempere/longNowForMd
|
||||
Standards-Version: 4.4.1
|
||||
Build-Depends: debhelper-compat (= 12)
|
||||
Package-List:
|
||||
longnow deb utils optional arch=all
|
||||
Checksums-Sha1:
|
||||
d933958eceb9060ef1454d8dd24738a0d00cfca0 1384 longnow_0.3~hirsute.orig.tar.xz
|
||||
7cde94738204813958f5acc63b5d71c0fd5a0aac 2084 longnow_0.3~hirsute-1.debian.tar.xz
|
||||
Checksums-Sha256:
|
||||
149a3e0864e75c6db6f4b3f1e9bbf7cc3f946baade82b89d69ea0eab2bb66f29 1384 longnow_0.3~hirsute.orig.tar.xz
|
||||
4c9b61e612a3d6b42d9524b8defd03b86a997f77aa154e3e8c2c332f2c52575e 2084 longnow_0.3~hirsute-1.debian.tar.xz
|
||||
Files:
|
||||
b71985275976bebbf821f431588f4785 1384 longnow_0.3~hirsute.orig.tar.xz
|
||||
949581c736911a9ac759c71d35db564c 2084 longnow_0.3~hirsute-1.debian.tar.xz
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3YYZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kVwXVDACrxCmYBHoNRX5KPtYA2xzw
|
||||
GpXgyRNQc6xfRjIz2JP5E7K1aAozvpR5woNJe2TzbZetmPzb+u8DLe22nvTgjFdv
|
||||
fIMW2ZuIyWxvljUb841+rY0XtDzDLw3CaU0TCjt1mcxerAazrrNDlSRK304ys6cl
|
||||
TJz9tSq+i8ZFdJ2gx+6PShLAk1CSXswp8ZtlS9mIzrIQup3r5ubMUpv1Znj1iZTs
|
||||
Zt/snO+qQpcDAHNGd+ISerPdoplSKK/cpeoxT6/jz1JbM36FjHnu3h08GDOBaz2k
|
||||
gG/ruq0nvtZ4IKpAfps2QkBIvOCzY/u8j5EQTl/0cSSThUDBUQEtzlZbAwzlBQzP
|
||||
8tdRxLNjeD9/6m5YrITy6n8enj/KxKtTg7qbYze8ENjhAFu8SrBSWCZ+/jmQlz9O
|
||||
jDlo9PIfWHEmMzyqmS1IJb7uMWNmtWjBbtfgBUf6Ovd5QMXR3otNvIExheONEgUz
|
||||
KueIysavpez1+mX1RDI9O2r6anXyCy8wm2dPHcbbfos=
|
||||
=ZpEN
|
||||
-----END PGP SIGNATURE-----
|
33
debian/longnow-0.3~series/longnow_0.3~hirsute-1_source.build
vendored
Normal file
33
debian/longnow-0.3~series/longnow_0.3~hirsute-1_source.build
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
dpkg-buildpackage -us -uc -ui -S
|
||||
dpkg-buildpackage: info: source package longnow
|
||||
dpkg-buildpackage: info: source version 0.3~hirsute-1
|
||||
dpkg-buildpackage: info: source distribution hirsute
|
||||
dpkg-buildpackage: info: source changed by Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
dpkg-source --before-build .
|
||||
fakeroot debian/rules clean
|
||||
dh clean
|
||||
dh_clean
|
||||
dpkg-source -b .
|
||||
dpkg-source: info: using source format '3.0 (quilt)'
|
||||
dpkg-source: info: building longnow using existing ./longnow_0.3~hirsute.orig.tar.xz
|
||||
dpkg-source: info: building longnow in longnow_0.3~hirsute-1.debian.tar.xz
|
||||
dpkg-source: info: building longnow in longnow_0.3~hirsute-1.dsc
|
||||
dpkg-genbuildinfo --build=source
|
||||
dpkg-genchanges --build=source >../longnow_0.3~hirsute-1_source.changes
|
||||
dpkg-genchanges: info: including full source code in upload
|
||||
dpkg-source --after-build .
|
||||
dpkg-buildpackage: info: full upload (original source is included)
|
||||
Now running lintian longnow_0.3~hirsute-1_source.changes ...
|
||||
E: longnow source: debian-rules-is-dh_make-template
|
||||
Finished running lintian.
|
||||
Now signing changes and any dsc files...
|
||||
signfile dsc longnow_0.3~hirsute-1.dsc Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
fixup_buildinfo longnow_0.3~hirsute-1.dsc longnow_0.3~hirsute-1_source.buildinfo
|
||||
signfile buildinfo longnow_0.3~hirsute-1_source.buildinfo Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
fixup_changes dsc longnow_0.3~hirsute-1.dsc longnow_0.3~hirsute-1_source.changes
|
||||
fixup_changes buildinfo longnow_0.3~hirsute-1_source.buildinfo longnow_0.3~hirsute-1_source.changes
|
||||
signfile changes longnow_0.3~hirsute-1_source.changes Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
Successfully signed dsc, buildinfo, changes files
|
193
debian/longnow-0.3~series/longnow_0.3~hirsute-1_source.buildinfo
vendored
Normal file
193
debian/longnow-0.3~series/longnow_0.3~hirsute-1_source.buildinfo
vendored
Normal file
|
@ -0,0 +1,193 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 1.0
|
||||
Source: longnow
|
||||
Binary: longnow
|
||||
Architecture: source
|
||||
Version: 0.3~hirsute-1
|
||||
Checksums-Md5:
|
||||
cdbf0ddb2ed3fc2fbfb8e83dc41e7cfc 1618 longnow_0.3~hirsute-1.dsc
|
||||
Checksums-Sha1:
|
||||
f452f2080926cc87ef05cf0b691143b6fd02fb96 1618 longnow_0.3~hirsute-1.dsc
|
||||
Checksums-Sha256:
|
||||
1a4cf929b8082c20bce5701c470aa64868f9746109cf262466719f0cc7d14fb9 1618 longnow_0.3~hirsute-1.dsc
|
||||
Build-Origin: Ubuntu
|
||||
Build-Architecture: amd64
|
||||
Build-Date: Mon, 28 Jun 2021 16:32:36 +0200
|
||||
Build-Tainted-By:
|
||||
merged-usr-via-symlinks
|
||||
usr-local-has-configs
|
||||
usr-local-has-libraries
|
||||
usr-local-has-programs
|
||||
Installed-Build-Depends:
|
||||
autoconf (= 2.69-11.1),
|
||||
automake (= 1:1.16.1-4ubuntu6),
|
||||
autopoint (= 0.19.8.1-10build1),
|
||||
autotools-dev (= 20180224.1),
|
||||
base-files (= 11ubuntu5.3),
|
||||
base-passwd (= 3.5.47),
|
||||
bash (= 5.0-6ubuntu1.1),
|
||||
binutils (= 2.34-6ubuntu1.1),
|
||||
binutils-common (= 2.34-6ubuntu1.1),
|
||||
binutils-x86-64-linux-gnu (= 2.34-6ubuntu1.1),
|
||||
bsdmainutils (= 11.1.2ubuntu3),
|
||||
bsdutils (= 1:2.34-0.1ubuntu9.1),
|
||||
build-essential (= 12.8ubuntu1.1),
|
||||
bzip2 (= 1.0.8-2),
|
||||
coreutils (= 8.30-3ubuntu2),
|
||||
cpp (= 4:9.3.0-1ubuntu2),
|
||||
cpp-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
dash (= 0.5.10.2-6),
|
||||
debconf (= 1.5.73),
|
||||
debhelper (= 12.10ubuntu1),
|
||||
debianutils (= 4.9.1),
|
||||
dh-autoreconf (= 19),
|
||||
dh-strip-nondeterminism (= 1.7.0-1),
|
||||
diffutils (= 1:3.7-3),
|
||||
dpkg (= 1.19.7ubuntu3),
|
||||
dpkg-dev (= 1.19.7ubuntu3),
|
||||
dwz (= 0.13-5),
|
||||
file (= 1:5.38-4),
|
||||
findutils (= 4.7.0-1ubuntu1),
|
||||
g++ (= 4:9.3.0-1ubuntu2),
|
||||
g++-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
gcc (= 4:9.3.0-1ubuntu2),
|
||||
gcc-10-base (= 10.3.0-1ubuntu1~20.04),
|
||||
gcc-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
gcc-9-base (= 9.3.0-17ubuntu1~20.04),
|
||||
gettext (= 0.19.8.1-10build1),
|
||||
gettext-base (= 0.19.8.1-10build1),
|
||||
grep (= 3.4-1),
|
||||
groff-base (= 1.22.4-4build1),
|
||||
gzip (= 1.10-0ubuntu4),
|
||||
hostname (= 3.23),
|
||||
init-system-helpers (= 1.57),
|
||||
install-info (= 6.7.0.dfsg.2-5),
|
||||
intltool-debian (= 0.35.0+20060710.5),
|
||||
libacl1 (= 2.2.53-6),
|
||||
libarchive-zip-perl (= 1.67-2),
|
||||
libasan5 (= 9.3.0-17ubuntu1~20.04),
|
||||
libatomic1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libattr1 (= 1:2.4.48-5),
|
||||
libaudit-common (= 1:2.8.5-2ubuntu6),
|
||||
libaudit1 (= 1:2.8.5-2ubuntu6),
|
||||
libbinutils (= 2.34-6ubuntu1.1),
|
||||
libblkid1 (= 2.34-0.1ubuntu9.1),
|
||||
libbsd0 (= 0.10.0-1),
|
||||
libbz2-1.0 (= 1.0.8-2),
|
||||
libc-bin (= 2.31-0ubuntu9.2),
|
||||
libc-dev-bin (= 2.31-0ubuntu9.2),
|
||||
libc6 (= 2.31-0ubuntu9.2),
|
||||
libc6-dev (= 2.31-0ubuntu9.2),
|
||||
libcap-ng0 (= 0.7.9-2.1build1),
|
||||
libcc1-0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libcroco3 (= 0.6.13-1),
|
||||
libcrypt-dev (= 1:4.4.10-10ubuntu4),
|
||||
libcrypt1 (= 1:4.4.10-10ubuntu4),
|
||||
libctf-nobfd0 (= 2.34-6ubuntu1.1),
|
||||
libctf0 (= 2.34-6ubuntu1.1),
|
||||
libdb5.3 (= 5.3.28+dfsg1-0.6ubuntu2),
|
||||
libdebconfclient0 (= 0.251ubuntu1),
|
||||
libdebhelper-perl (= 12.10ubuntu1),
|
||||
libdpkg-perl (= 1.19.7ubuntu3),
|
||||
libelf1 (= 0.176-1.1build1),
|
||||
libffi7 (= 3.3-4),
|
||||
libfile-stripnondeterminism-perl (= 1.7.0-1),
|
||||
libgcc-9-dev (= 9.3.0-17ubuntu1~20.04),
|
||||
libgcc-s1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libgcrypt20 (= 1.8.5-5ubuntu1),
|
||||
libgdbm-compat4 (= 1.18.1-5),
|
||||
libgdbm6 (= 1.18.1-5),
|
||||
libglib2.0-0 (= 2.64.6-1~ubuntu20.04.3),
|
||||
libgmp10 (= 2:6.2.0+dfsg-4),
|
||||
libgomp1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libgpg-error0 (= 1.37-1),
|
||||
libicu66 (= 66.1-2ubuntu2),
|
||||
libisl22 (= 0.22.1-1),
|
||||
libitm1 (= 10.3.0-1ubuntu1~20.04),
|
||||
liblsan0 (= 10.3.0-1ubuntu1~20.04),
|
||||
liblz4-1 (= 1.9.2-2ubuntu0.20.04.1),
|
||||
liblzma5 (= 5.2.4-1ubuntu1),
|
||||
libmagic-mgc (= 1:5.38-4),
|
||||
libmagic1 (= 1:5.38-4),
|
||||
libmount1 (= 2.34-0.1ubuntu9.1),
|
||||
libmpc3 (= 1.1.0-1),
|
||||
libmpfr6 (= 4.0.2-1),
|
||||
libpam-modules (= 1.3.1-5ubuntu4.1),
|
||||
libpam-modules-bin (= 1.3.1-5ubuntu4.1),
|
||||
libpam-runtime (= 1.3.1-5ubuntu4.1),
|
||||
libpam0g (= 1.3.1-5ubuntu4.1),
|
||||
libpcre2-8-0 (= 10.34-7),
|
||||
libpcre3 (= 2:8.39-12build1),
|
||||
libperl5.30 (= 5.30.0-9ubuntu0.2),
|
||||
libpipeline1 (= 1.5.2-2build1),
|
||||
libquadmath0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libseccomp2 (= 2.5.1-1ubuntu1~20.04.1),
|
||||
libselinux1 (= 3.0-1build2),
|
||||
libsigsegv2 (= 2.12-2),
|
||||
libsmartcols1 (= 2.34-0.1ubuntu9.1),
|
||||
libstdc++-9-dev (= 9.3.0-17ubuntu1~20.04),
|
||||
libstdc++6 (= 10.3.0-1ubuntu1~20.04),
|
||||
libsub-override-perl (= 0.09-2),
|
||||
libsystemd0 (= 245.4-4ubuntu3.6),
|
||||
libtinfo6 (= 6.2-0ubuntu2),
|
||||
libtool (= 2.4.6-14),
|
||||
libtsan0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libubsan1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libuchardet0 (= 0.0.6-3build1),
|
||||
libudev1 (= 245.4-4ubuntu3.6),
|
||||
libunistring2 (= 0.9.10-2),
|
||||
libuuid1 (= 2.34-0.1ubuntu9.1),
|
||||
libxml2 (= 2.9.10+dfsg-5ubuntu0.20.04.1),
|
||||
libzstd1 (= 1.4.4+dfsg-3ubuntu0.1),
|
||||
linux-libc-dev (= 5.4.0-77.86),
|
||||
login (= 1:4.8.1-1ubuntu5.20.04),
|
||||
lsb-base (= 11.1.0ubuntu2),
|
||||
m4 (= 1.4.18-4),
|
||||
make (= 4.2.1-1.2),
|
||||
man-db (= 2.9.1-1),
|
||||
mawk (= 1.3.4.20200120-2),
|
||||
ncurses-base (= 6.2-0ubuntu2),
|
||||
ncurses-bin (= 6.2-0ubuntu2),
|
||||
patch (= 2.7.6-6),
|
||||
perl (= 5.30.0-9ubuntu0.2),
|
||||
perl-base (= 5.30.0-9ubuntu0.2),
|
||||
perl-modules-5.30 (= 5.30.0-9ubuntu0.2),
|
||||
po-debconf (= 1.0.21),
|
||||
sed (= 4.7-1),
|
||||
sensible-utils (= 0.0.12+nmu1),
|
||||
sysvinit-utils (= 2.96-2.1ubuntu1),
|
||||
tar (= 1.30+dfsg-7ubuntu0.20.04.1),
|
||||
tzdata (= 2021a-0ubuntu0.20.04),
|
||||
util-linux (= 2.34-0.1ubuntu9.1),
|
||||
xz-utils (= 5.2.4-1ubuntu1),
|
||||
zlib1g (= 1:1.2.11.dfsg-2ubuntu1.2)
|
||||
Environment:
|
||||
DEB_BUILD_OPTIONS="parallel=4"
|
||||
LANG="en_US.UTF-8"
|
||||
LC_ADDRESS="de_AT.UTF-8"
|
||||
LC_IDENTIFICATION="de_AT.UTF-8"
|
||||
LC_MEASUREMENT="de_AT.UTF-8"
|
||||
LC_MONETARY="de_AT.UTF-8"
|
||||
LC_NAME="de_AT.UTF-8"
|
||||
LC_NUMERIC="de_AT.UTF-8"
|
||||
LC_PAPER="de_AT.UTF-8"
|
||||
LC_TELEPHONE="de_AT.UTF-8"
|
||||
LC_TIME="de_AT.UTF-8"
|
||||
SOURCE_DATE_EPOCH="1624890722"
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3YcZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kVzGbDACiKSgIHNYn0Pij/ppBhMX3
|
||||
crb69gWGeCfx5Q4GxU532QYXqQZPCDcuvQqoBfcKNNKoX9PFJDvavYXhuAeS8kep
|
||||
NaGWfJQQ3XUZ9aCID1dKpYzfqj9Qj2xXFzSRvI9HZicXgYhWbuahmUdBY7cmtUG4
|
||||
lnk3KBMVIgGKQhoNnSArMqo+lx0kMYRKIDEpQ3WNiTzXPThDAt+ayo5lK9ai3Tz7
|
||||
E4efOXjxPN9F5ZAu2Mm8gejFmKYgNraGvHBWdW0dwy/iKw5mA6nfjSqS52iLkE0Q
|
||||
/GWfuRHcEzimlp3Mm8fNrzaqPYBUMHlqtWjyj4oSifc+KTIKc3jVh37RxoI9VRq/
|
||||
/gXXDSl9UkoxBgLPLqiBf/z2MuXp5ErTqVYCdjV1fzFRb6jys8R43R8v08gMEcaq
|
||||
AVyEfF2mD6TPiNI/60rRLjUpC2ARBre1usW8ljNz/ISMIbH+xqFC/+WgEJisEL+B
|
||||
xOrIUNktR1GihOKf9Ivtuo9yqvzfLCUZV/pIdbDQPoA=
|
||||
=T4ON
|
||||
-----END PGP SIGNATURE-----
|
46
debian/longnow-0.3~series/longnow_0.3~hirsute-1_source.changes
vendored
Normal file
46
debian/longnow-0.3~series/longnow_0.3~hirsute-1_source.changes
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 1.8
|
||||
Date: Mon, 28 Jun 2021 16:32:02 +0200
|
||||
Source: longnow
|
||||
Architecture: source
|
||||
Version: 0.3~hirsute-1
|
||||
Distribution: hirsute
|
||||
Urgency: medium
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Changed-By: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Changes:
|
||||
longnow (0.3~hirsute-1) hirsute; urgency=medium
|
||||
.
|
||||
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
|
||||
Checksums-Sha1:
|
||||
f452f2080926cc87ef05cf0b691143b6fd02fb96 1618 longnow_0.3~hirsute-1.dsc
|
||||
d933958eceb9060ef1454d8dd24738a0d00cfca0 1384 longnow_0.3~hirsute.orig.tar.xz
|
||||
7cde94738204813958f5acc63b5d71c0fd5a0aac 2084 longnow_0.3~hirsute-1.debian.tar.xz
|
||||
aba6a487ee198c742dd2c433dd10fcaa2ea2eb00 6164 longnow_0.3~hirsute-1_source.buildinfo
|
||||
Checksums-Sha256:
|
||||
1a4cf929b8082c20bce5701c470aa64868f9746109cf262466719f0cc7d14fb9 1618 longnow_0.3~hirsute-1.dsc
|
||||
149a3e0864e75c6db6f4b3f1e9bbf7cc3f946baade82b89d69ea0eab2bb66f29 1384 longnow_0.3~hirsute.orig.tar.xz
|
||||
4c9b61e612a3d6b42d9524b8defd03b86a997f77aa154e3e8c2c332f2c52575e 2084 longnow_0.3~hirsute-1.debian.tar.xz
|
||||
c0d41a4e1ce7202f554040c4c0dffec01a69cd927dc9197b4803c640d74b753f 6164 longnow_0.3~hirsute-1_source.buildinfo
|
||||
Files:
|
||||
cdbf0ddb2ed3fc2fbfb8e83dc41e7cfc 1618 utils optional longnow_0.3~hirsute-1.dsc
|
||||
b71985275976bebbf821f431588f4785 1384 utils optional longnow_0.3~hirsute.orig.tar.xz
|
||||
949581c736911a9ac759c71d35db564c 2084 utils optional longnow_0.3~hirsute-1.debian.tar.xz
|
||||
8c707726174d36cc4a4d406a0591ad9c 6164 utils optional longnow_0.3~hirsute-1_source.buildinfo
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3YcZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kV9JPC/9uHSvAfQpYI0XmWOXTSgM4
|
||||
rOGZ//ZP6F68ZCAhpsNT9AzY77oXLyp9K5WhDw6RHGRdFxHyG24334qqXSjLr/lk
|
||||
fhLzQQ07IaL0m+pMofD//KicyZps5D4grnDPoJuErPLA5zGw+tIfmJz5Y/VdMGN7
|
||||
5EV1IppxzoEDlbbgIZyLazbrIU4QQGK+2Qfm7z2UHR4+KBhdOHPGjGxYW9O1/g09
|
||||
v8oU7To1ceIc8adSmqvib2VNLdS2BEDq8rcCHUT54t/WiygBtcZcsWZTDH4TQKNH
|
||||
97eXTa9QZdovBMCtAAflIeq4umjtILtsSW/rrQgC+SDnflSm0nJjAiGiir/7aXDc
|
||||
Esqy4hYzbwFRia1Doqxeg5774HGn0XVAXLICLTC0QZfkxTWTPUIM3kemN5+CsrOq
|
||||
JqTm1kGfBsSWedSon/XnAN8H7Ed0QnF2iZh/cpgi9fVkZtIhxR9GyMNCplAkm/wx
|
||||
ZKSJP3QhJImQ4f4ypL/QmVuMFcI3mWOwqkSca+t4/7Y=
|
||||
=C60p
|
||||
-----END PGP SIGNATURE-----
|
5
debian/longnow-0.3~series/longnow_0.3~hirsute-1_source.ppa.upload
vendored
Normal file
5
debian/longnow-0.3~series/longnow_0.3~hirsute-1_source.ppa.upload
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
Successfully uploaded longnow_0.3~hirsute-1.dsc to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~hirsute.orig.tar.xz to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~hirsute-1.debian.tar.xz to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~hirsute-1_source.buildinfo to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~hirsute-1_source.changes to ppa.launchpad.net for ppa.
|
BIN
debian/longnow-0.3~series/longnow_0.3~hirsute.orig.tar.xz
vendored
Normal file
BIN
debian/longnow-0.3~series/longnow_0.3~hirsute.orig.tar.xz
vendored
Normal file
Binary file not shown.
BIN
debian/longnow-0.3~series/longnow_0.3~impish-1.debian.tar.xz
vendored
Normal file
BIN
debian/longnow-0.3~series/longnow_0.3~impish-1.debian.tar.xz
vendored
Normal file
Binary file not shown.
38
debian/longnow-0.3~series/longnow_0.3~impish-1.dsc
vendored
Normal file
38
debian/longnow-0.3~series/longnow_0.3~impish-1.dsc
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 3.0 (quilt)
|
||||
Source: longnow
|
||||
Binary: longnow
|
||||
Architecture: all
|
||||
Version: 0.3~impish-1
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Homepage: https://github.com/NunoSempere/longNowForMd
|
||||
Standards-Version: 4.4.1
|
||||
Build-Depends: debhelper-compat (= 12)
|
||||
Package-List:
|
||||
longnow deb utils optional arch=all
|
||||
Checksums-Sha1:
|
||||
875168be207505ed2a48fea6b4ca1dfa9ae983e8 1380 longnow_0.3~impish.orig.tar.xz
|
||||
842631a2ce8b67e98423139cf88b201c942c630c 2080 longnow_0.3~impish-1.debian.tar.xz
|
||||
Checksums-Sha256:
|
||||
5607546d6e398b915038f4a34fb279b2d36ac92eed64b117342ec47f082bb756 1380 longnow_0.3~impish.orig.tar.xz
|
||||
d0f704625e871943eb3862c749a474bab7067bc6d3d26c2f8ce094fd6641433f 2080 longnow_0.3~impish-1.debian.tar.xz
|
||||
Files:
|
||||
a54bb4cd915e08f9a3335826824d4416 1380 longnow_0.3~impish.orig.tar.xz
|
||||
8b6d52d49c6e4f158a3efc78cbf0b44e 2080 longnow_0.3~impish-1.debian.tar.xz
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3a8ZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kVw9pC/0Tzf5WQU5PZw3ROBWVluys
|
||||
r36C0qFp1f1+z3BAkFG1clA4dkSbFYopmXdsr82G4x2PkWi8shC8WBWSQv/msfcB
|
||||
17LIGlh99Pv8vTe/5zPGnUwmvFxzTpsEN0M3RIE9O6dMduf3by4a3CTTkl4m5LBs
|
||||
1MlgM5XgcyVl4eKC1hpQGlVM70tRKyRf9kgxcJGmfcwtx1Uv59VTPWm0DpAVHBUg
|
||||
8JOHqKmR/25rVfYue3uM7iCYns5lrZvhOh2AoXvMOblCvvHqKbbsZLyFDwaXHG6/
|
||||
A864XLI/q4gj8gcJkN34Uu6k7kHdvko1eANyTuhHBWr/6hTp6iU7jsCK5CuQw3WE
|
||||
GYndJYxh1dAhKYHvlmc5pswSYS+IUwU+EPaSG4nh5Hl2TDYpeq9RohzYBa4YTs0X
|
||||
JHNzvw8H6ZzUPtheCR+sXZnlKU/B2vCbFBDfWRIagM+pu5/s+0d+O1isxZusN+me
|
||||
lzwTF3x3ncUMKaqbJObG2kpkkBPDY6jY/4cCGZqBeA8=
|
||||
=omU7
|
||||
-----END PGP SIGNATURE-----
|
33
debian/longnow-0.3~series/longnow_0.3~impish-1_source.build
vendored
Normal file
33
debian/longnow-0.3~series/longnow_0.3~impish-1_source.build
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
dpkg-buildpackage -us -uc -ui -S
|
||||
dpkg-buildpackage: info: source package longnow
|
||||
dpkg-buildpackage: info: source version 0.3~impish-1
|
||||
dpkg-buildpackage: info: source distribution impish
|
||||
dpkg-buildpackage: info: source changed by Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
dpkg-source --before-build .
|
||||
fakeroot debian/rules clean
|
||||
dh clean
|
||||
dh_clean
|
||||
dpkg-source -b .
|
||||
dpkg-source: info: using source format '3.0 (quilt)'
|
||||
dpkg-source: info: building longnow using existing ./longnow_0.3~impish.orig.tar.xz
|
||||
dpkg-source: info: building longnow in longnow_0.3~impish-1.debian.tar.xz
|
||||
dpkg-source: info: building longnow in longnow_0.3~impish-1.dsc
|
||||
dpkg-genbuildinfo --build=source
|
||||
dpkg-genchanges --build=source >../longnow_0.3~impish-1_source.changes
|
||||
dpkg-genchanges: info: including full source code in upload
|
||||
dpkg-source --after-build .
|
||||
dpkg-buildpackage: info: full upload (original source is included)
|
||||
Now running lintian longnow_0.3~impish-1_source.changes ...
|
||||
E: longnow source: debian-rules-is-dh_make-template
|
||||
Finished running lintian.
|
||||
Now signing changes and any dsc files...
|
||||
signfile dsc longnow_0.3~impish-1.dsc Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
fixup_buildinfo longnow_0.3~impish-1.dsc longnow_0.3~impish-1_source.buildinfo
|
||||
signfile buildinfo longnow_0.3~impish-1_source.buildinfo Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
fixup_changes dsc longnow_0.3~impish-1.dsc longnow_0.3~impish-1_source.changes
|
||||
fixup_changes buildinfo longnow_0.3~impish-1_source.buildinfo longnow_0.3~impish-1_source.changes
|
||||
signfile changes longnow_0.3~impish-1_source.changes Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
|
||||
Successfully signed dsc, buildinfo, changes files
|
193
debian/longnow-0.3~series/longnow_0.3~impish-1_source.buildinfo
vendored
Normal file
193
debian/longnow-0.3~series/longnow_0.3~impish-1_source.buildinfo
vendored
Normal file
|
@ -0,0 +1,193 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 1.0
|
||||
Source: longnow
|
||||
Binary: longnow
|
||||
Architecture: source
|
||||
Version: 0.3~impish-1
|
||||
Checksums-Md5:
|
||||
83017ff79ab742fd5a205888441d38f5 1611 longnow_0.3~impish-1.dsc
|
||||
Checksums-Sha1:
|
||||
49ae1f61008b88748d6d228df4c9c69923baf5b0 1611 longnow_0.3~impish-1.dsc
|
||||
Checksums-Sha256:
|
||||
37d376c570d819c6748b8b8805edf4c14bc0f85d904ceb97fc7f19a9e69674b8 1611 longnow_0.3~impish-1.dsc
|
||||
Build-Origin: Ubuntu
|
||||
Build-Architecture: amd64
|
||||
Build-Date: Mon, 28 Jun 2021 16:33:17 +0200
|
||||
Build-Tainted-By:
|
||||
merged-usr-via-symlinks
|
||||
usr-local-has-configs
|
||||
usr-local-has-libraries
|
||||
usr-local-has-programs
|
||||
Installed-Build-Depends:
|
||||
autoconf (= 2.69-11.1),
|
||||
automake (= 1:1.16.1-4ubuntu6),
|
||||
autopoint (= 0.19.8.1-10build1),
|
||||
autotools-dev (= 20180224.1),
|
||||
base-files (= 11ubuntu5.3),
|
||||
base-passwd (= 3.5.47),
|
||||
bash (= 5.0-6ubuntu1.1),
|
||||
binutils (= 2.34-6ubuntu1.1),
|
||||
binutils-common (= 2.34-6ubuntu1.1),
|
||||
binutils-x86-64-linux-gnu (= 2.34-6ubuntu1.1),
|
||||
bsdmainutils (= 11.1.2ubuntu3),
|
||||
bsdutils (= 1:2.34-0.1ubuntu9.1),
|
||||
build-essential (= 12.8ubuntu1.1),
|
||||
bzip2 (= 1.0.8-2),
|
||||
coreutils (= 8.30-3ubuntu2),
|
||||
cpp (= 4:9.3.0-1ubuntu2),
|
||||
cpp-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
dash (= 0.5.10.2-6),
|
||||
debconf (= 1.5.73),
|
||||
debhelper (= 12.10ubuntu1),
|
||||
debianutils (= 4.9.1),
|
||||
dh-autoreconf (= 19),
|
||||
dh-strip-nondeterminism (= 1.7.0-1),
|
||||
diffutils (= 1:3.7-3),
|
||||
dpkg (= 1.19.7ubuntu3),
|
||||
dpkg-dev (= 1.19.7ubuntu3),
|
||||
dwz (= 0.13-5),
|
||||
file (= 1:5.38-4),
|
||||
findutils (= 4.7.0-1ubuntu1),
|
||||
g++ (= 4:9.3.0-1ubuntu2),
|
||||
g++-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
gcc (= 4:9.3.0-1ubuntu2),
|
||||
gcc-10-base (= 10.3.0-1ubuntu1~20.04),
|
||||
gcc-9 (= 9.3.0-17ubuntu1~20.04),
|
||||
gcc-9-base (= 9.3.0-17ubuntu1~20.04),
|
||||
gettext (= 0.19.8.1-10build1),
|
||||
gettext-base (= 0.19.8.1-10build1),
|
||||
grep (= 3.4-1),
|
||||
groff-base (= 1.22.4-4build1),
|
||||
gzip (= 1.10-0ubuntu4),
|
||||
hostname (= 3.23),
|
||||
init-system-helpers (= 1.57),
|
||||
install-info (= 6.7.0.dfsg.2-5),
|
||||
intltool-debian (= 0.35.0+20060710.5),
|
||||
libacl1 (= 2.2.53-6),
|
||||
libarchive-zip-perl (= 1.67-2),
|
||||
libasan5 (= 9.3.0-17ubuntu1~20.04),
|
||||
libatomic1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libattr1 (= 1:2.4.48-5),
|
||||
libaudit-common (= 1:2.8.5-2ubuntu6),
|
||||
libaudit1 (= 1:2.8.5-2ubuntu6),
|
||||
libbinutils (= 2.34-6ubuntu1.1),
|
||||
libblkid1 (= 2.34-0.1ubuntu9.1),
|
||||
libbsd0 (= 0.10.0-1),
|
||||
libbz2-1.0 (= 1.0.8-2),
|
||||
libc-bin (= 2.31-0ubuntu9.2),
|
||||
libc-dev-bin (= 2.31-0ubuntu9.2),
|
||||
libc6 (= 2.31-0ubuntu9.2),
|
||||
libc6-dev (= 2.31-0ubuntu9.2),
|
||||
libcap-ng0 (= 0.7.9-2.1build1),
|
||||
libcc1-0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libcroco3 (= 0.6.13-1),
|
||||
libcrypt-dev (= 1:4.4.10-10ubuntu4),
|
||||
libcrypt1 (= 1:4.4.10-10ubuntu4),
|
||||
libctf-nobfd0 (= 2.34-6ubuntu1.1),
|
||||
libctf0 (= 2.34-6ubuntu1.1),
|
||||
libdb5.3 (= 5.3.28+dfsg1-0.6ubuntu2),
|
||||
libdebconfclient0 (= 0.251ubuntu1),
|
||||
libdebhelper-perl (= 12.10ubuntu1),
|
||||
libdpkg-perl (= 1.19.7ubuntu3),
|
||||
libelf1 (= 0.176-1.1build1),
|
||||
libffi7 (= 3.3-4),
|
||||
libfile-stripnondeterminism-perl (= 1.7.0-1),
|
||||
libgcc-9-dev (= 9.3.0-17ubuntu1~20.04),
|
||||
libgcc-s1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libgcrypt20 (= 1.8.5-5ubuntu1),
|
||||
libgdbm-compat4 (= 1.18.1-5),
|
||||
libgdbm6 (= 1.18.1-5),
|
||||
libglib2.0-0 (= 2.64.6-1~ubuntu20.04.3),
|
||||
libgmp10 (= 2:6.2.0+dfsg-4),
|
||||
libgomp1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libgpg-error0 (= 1.37-1),
|
||||
libicu66 (= 66.1-2ubuntu2),
|
||||
libisl22 (= 0.22.1-1),
|
||||
libitm1 (= 10.3.0-1ubuntu1~20.04),
|
||||
liblsan0 (= 10.3.0-1ubuntu1~20.04),
|
||||
liblz4-1 (= 1.9.2-2ubuntu0.20.04.1),
|
||||
liblzma5 (= 5.2.4-1ubuntu1),
|
||||
libmagic-mgc (= 1:5.38-4),
|
||||
libmagic1 (= 1:5.38-4),
|
||||
libmount1 (= 2.34-0.1ubuntu9.1),
|
||||
libmpc3 (= 1.1.0-1),
|
||||
libmpfr6 (= 4.0.2-1),
|
||||
libpam-modules (= 1.3.1-5ubuntu4.1),
|
||||
libpam-modules-bin (= 1.3.1-5ubuntu4.1),
|
||||
libpam-runtime (= 1.3.1-5ubuntu4.1),
|
||||
libpam0g (= 1.3.1-5ubuntu4.1),
|
||||
libpcre2-8-0 (= 10.34-7),
|
||||
libpcre3 (= 2:8.39-12build1),
|
||||
libperl5.30 (= 5.30.0-9ubuntu0.2),
|
||||
libpipeline1 (= 1.5.2-2build1),
|
||||
libquadmath0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libseccomp2 (= 2.5.1-1ubuntu1~20.04.1),
|
||||
libselinux1 (= 3.0-1build2),
|
||||
libsigsegv2 (= 2.12-2),
|
||||
libsmartcols1 (= 2.34-0.1ubuntu9.1),
|
||||
libstdc++-9-dev (= 9.3.0-17ubuntu1~20.04),
|
||||
libstdc++6 (= 10.3.0-1ubuntu1~20.04),
|
||||
libsub-override-perl (= 0.09-2),
|
||||
libsystemd0 (= 245.4-4ubuntu3.6),
|
||||
libtinfo6 (= 6.2-0ubuntu2),
|
||||
libtool (= 2.4.6-14),
|
||||
libtsan0 (= 10.3.0-1ubuntu1~20.04),
|
||||
libubsan1 (= 10.3.0-1ubuntu1~20.04),
|
||||
libuchardet0 (= 0.0.6-3build1),
|
||||
libudev1 (= 245.4-4ubuntu3.6),
|
||||
libunistring2 (= 0.9.10-2),
|
||||
libuuid1 (= 2.34-0.1ubuntu9.1),
|
||||
libxml2 (= 2.9.10+dfsg-5ubuntu0.20.04.1),
|
||||
libzstd1 (= 1.4.4+dfsg-3ubuntu0.1),
|
||||
linux-libc-dev (= 5.4.0-77.86),
|
||||
login (= 1:4.8.1-1ubuntu5.20.04),
|
||||
lsb-base (= 11.1.0ubuntu2),
|
||||
m4 (= 1.4.18-4),
|
||||
make (= 4.2.1-1.2),
|
||||
man-db (= 2.9.1-1),
|
||||
mawk (= 1.3.4.20200120-2),
|
||||
ncurses-base (= 6.2-0ubuntu2),
|
||||
ncurses-bin (= 6.2-0ubuntu2),
|
||||
patch (= 2.7.6-6),
|
||||
perl (= 5.30.0-9ubuntu0.2),
|
||||
perl-base (= 5.30.0-9ubuntu0.2),
|
||||
perl-modules-5.30 (= 5.30.0-9ubuntu0.2),
|
||||
po-debconf (= 1.0.21),
|
||||
sed (= 4.7-1),
|
||||
sensible-utils (= 0.0.12+nmu1),
|
||||
sysvinit-utils (= 2.96-2.1ubuntu1),
|
||||
tar (= 1.30+dfsg-7ubuntu0.20.04.1),
|
||||
tzdata (= 2021a-0ubuntu0.20.04),
|
||||
util-linux (= 2.34-0.1ubuntu9.1),
|
||||
xz-utils (= 5.2.4-1ubuntu1),
|
||||
zlib1g (= 1:1.2.11.dfsg-2ubuntu1.2)
|
||||
Environment:
|
||||
DEB_BUILD_OPTIONS="parallel=4"
|
||||
LANG="en_US.UTF-8"
|
||||
LC_ADDRESS="de_AT.UTF-8"
|
||||
LC_IDENTIFICATION="de_AT.UTF-8"
|
||||
LC_MEASUREMENT="de_AT.UTF-8"
|
||||
LC_MONETARY="de_AT.UTF-8"
|
||||
LC_NAME="de_AT.UTF-8"
|
||||
LC_NUMERIC="de_AT.UTF-8"
|
||||
LC_PAPER="de_AT.UTF-8"
|
||||
LC_TELEPHONE="de_AT.UTF-8"
|
||||
LC_TIME="de_AT.UTF-8"
|
||||
SOURCE_DATE_EPOCH="1624890778"
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3a8ZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kV/RQC/oDVzirKp3u+Xr6ZuP15bTp
|
||||
ijqYtttBQd9+2FaGP87sC0jkDarpiQZGIgeyxKLnZyT5lnwbse3LruxFdyThSq3C
|
||||
0CMJwtu/eAJCryfHO+vHQmTkN/c4h3IR2POebLljamt1gg1bIW0K3Y+6RzPcihgm
|
||||
x1KAuuU/W60L9nNjHa+M7NhDqOAWwoR39DR5CEdjTf52NODayBZuyA4s0l143yPn
|
||||
/StCk1nDZMUTFSfW0OKKaLniRkBWj+CG0tgyeWCtqShnlxdjhl/SfT2Ci8O7n4C9
|
||||
9q9LuldznaXxF/A2yvLDyjKCb9HUf8wKZvZC31mn6LOJntAny8eovOb1ivDOw0A5
|
||||
Ros7IKWBZKM1Y2T2w8inUp7/qBUnrZW5kvib+6/nSr43KpuFpTMrjDP1RRCfGzbU
|
||||
WGet8YlCzrAMCA73jV4661EMyVT94Tcr0Xx6+MzpMcKpQ/rXB6rwUSrVBNYdyLds
|
||||
/EKKir2Gm/6UkKjHKHOB7+kd9IzftbfoqTgPkKF7Fas=
|
||||
=T5we
|
||||
-----END PGP SIGNATURE-----
|
46
debian/longnow-0.3~series/longnow_0.3~impish-1_source.changes
vendored
Normal file
46
debian/longnow-0.3~series/longnow_0.3~impish-1_source.changes
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
Format: 1.8
|
||||
Date: Mon, 28 Jun 2021 16:32:58 +0200
|
||||
Source: longnow
|
||||
Architecture: source
|
||||
Version: 0.3~impish-1
|
||||
Distribution: impish
|
||||
Urgency: medium
|
||||
Maintainer: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Changed-By: Nuno Sempere <nuno.semperelh@gmail.com>
|
||||
Changes:
|
||||
longnow (0.3~impish-1) impish; urgency=medium
|
||||
.
|
||||
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
|
||||
Checksums-Sha1:
|
||||
49ae1f61008b88748d6d228df4c9c69923baf5b0 1611 longnow_0.3~impish-1.dsc
|
||||
875168be207505ed2a48fea6b4ca1dfa9ae983e8 1380 longnow_0.3~impish.orig.tar.xz
|
||||
842631a2ce8b67e98423139cf88b201c942c630c 2080 longnow_0.3~impish-1.debian.tar.xz
|
||||
cd76aea986456fa7f546f799970b96ebea16ab29 6160 longnow_0.3~impish-1_source.buildinfo
|
||||
Checksums-Sha256:
|
||||
37d376c570d819c6748b8b8805edf4c14bc0f85d904ceb97fc7f19a9e69674b8 1611 longnow_0.3~impish-1.dsc
|
||||
5607546d6e398b915038f4a34fb279b2d36ac92eed64b117342ec47f082bb756 1380 longnow_0.3~impish.orig.tar.xz
|
||||
d0f704625e871943eb3862c749a474bab7067bc6d3d26c2f8ce094fd6641433f 2080 longnow_0.3~impish-1.debian.tar.xz
|
||||
c0b86d6fa67290a43b6dffba18f528e6708c50bc06441cb553e21b0b95f5102e 6160 longnow_0.3~impish-1_source.buildinfo
|
||||
Files:
|
||||
83017ff79ab742fd5a205888441d38f5 1611 utils optional longnow_0.3~impish-1.dsc
|
||||
a54bb4cd915e08f9a3335826824d4416 1380 utils optional longnow_0.3~impish.orig.tar.xz
|
||||
8b6d52d49c6e4f158a3efc78cbf0b44e 2080 utils optional longnow_0.3~impish-1.debian.tar.xz
|
||||
ac72eb44130962ebcfbffa95df11434c 6160 utils optional longnow_0.3~impish-1_source.buildinfo
|
||||
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQHNBAEBCgA3FiEEJgMJ0m3ydsnStpbJvUQaV89PZFcFAmDZ3bAZHG51bm8uc2Vt
|
||||
cGVyZWxoQGdtYWlsLmNvbQAKCRC9RBpXz09kV6TDC/43UtvuqyVC7JQfnLbRhLP+
|
||||
+9+nFGjOb3fRwjULBkOuW3tf3/J76LEr1scit+WPe7SOGuslkMj96IWyUvK1ZZhk
|
||||
zj1sbwIksOu2ShfZ6adEj40De6URDVq6WLqeH5rPYs3Qkl+QNnP4102vREusA4RV
|
||||
L5xc30C54zVSO7h7JyXwvp1NrmmPdfWRJUDzz7yfLkUw8S4qgE0ZCO2Gd/B91ETS
|
||||
3lWrpYBQN2jDl/WYmWfIQ+XaX7DizAitvy3IwQ/Hgr+exTAXVTqUvnOI67XMMWLD
|
||||
3frK3LKEMqRJwTkm2iPhEYgndlbBTEXuN1E6DtYDDKIbwpADimcDw2a/OtdlPW4x
|
||||
adBn6Hh4IRkDUzZ1uCGJWHhdXy21Z2roRbbmUPlvWHmW4mfwsJwXcMie0tyOPKZT
|
||||
74p2EDOQ6e0Wi5j0MTymJMXk8iFzjZ3TIKeFCwMpW/92KoBbkR6yi/Mslvnt6uw/
|
||||
x0ECPDl0UhpSq2J99hkdFYezVHhlanmbpAYr3qaF8kU=
|
||||
=5wGm
|
||||
-----END PGP SIGNATURE-----
|
5
debian/longnow-0.3~series/longnow_0.3~impish-1_source.ppa.upload
vendored
Normal file
5
debian/longnow-0.3~series/longnow_0.3~impish-1_source.ppa.upload
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
Successfully uploaded longnow_0.3~impish-1.dsc to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~impish.orig.tar.xz to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~impish-1.debian.tar.xz to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~impish-1_source.buildinfo to ppa.launchpad.net for ppa.
|
||||
Successfully uploaded longnow_0.3~impish-1_source.changes to ppa.launchpad.net for ppa.
|
BIN
debian/longnow-0.3~series/longnow_0.3~impish.orig.tar.xz
vendored
Normal file
BIN
debian/longnow-0.3~series/longnow_0.3~impish.orig.tar.xz
vendored
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user