???????????????
???????????????
Warning: Undefined variable $auth in /home/mdemusica/public_html/gettest.php on line 544
Warning: Trying to access array offset on value of type null in /home/mdemusica/public_html/gettest.php on line 544
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 181
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 182
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 183
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 184
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 185
Warning: Cannot modify header information - headers already sent by (output started at /home/mdemusica/public_html/gettest.php:1) in /home/mdemusica/public_html/gettest.php on line 186
usr/bin/rpmdev-packager 0000755 00000007212 15143651404 0011130 0 ustar 00 #!/bin/bash
# rpmdev-packager -- guess rpm packager info from various sources
#
# Copyright (c) 2009-2016 Ville Skyttä
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
version()
{
cat <
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
EOF
}
help()
{
cat <<\EOF
rpmdev-packager guesses rpm packager info from various sources:
$RPM_PACKAGER from environment (full name + email address)
%packager from rpm configuration (full name + email address)
certificates ~/.fedora.cert (email address)
git from git configuration (user.name + user.email)
$MAILTO from environment (email address)
/etc/passwd gecos (full name, username)
EOF
usage
echo ""
echo "Report bugs at , component rpmdevtools,"
echo "or at ."
}
usage() {
cat </dev/null )"
[ -n "$packager" -a -n "$fullname" ] && \
packager="$fullname <$packager>"
[ -n "$packager" ] && break
fi
done
fi
# Try git configuration
if [ -z "$packager" ] ; then
packager="$( git config user.email )"
if [ -n "$packager" ] ; then
gituser="$( git config user.name )"
[ -n "${gituser:-$fullname}" ] && \
packager="${gituser:-$fullname} <$packager>"
fi
fi
# Try $MAILTO
if [ -z "$packager" ] ; then
packager="$MAILTO"
[ -n "$packager" -a -n "$fullname" ] && packager="$fullname <$packager>"
fi
# Try full name
[ -z "$packager" ] && packager="$fullname"
# Fall back to username only
[ -z "$packager" ] && packager="$username"
# Done
[ -n "$packager" ] && echo "$packager"