Compare commits
107 commits
F-13-split
...
rawhide
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
42b5c0bf10 | ||
|
|
e659aebf6b | ||
|
|
1b249ca594 | ||
|
|
11206c2e5c | ||
|
|
de643ba967 | ||
|
|
889fc7bc01 | ||
|
|
f5a3939ef0 | ||
|
|
f77fe4991a | ||
|
|
8dfc65b35c | ||
|
|
c53d306ecb | ||
|
|
1b35f1de9f | ||
|
|
5986e55c65 | ||
|
|
1d0be52116 | ||
|
|
dae44c450a | ||
|
|
84035cb85f | ||
|
|
b6b929a0ab | ||
|
|
a0d6ccb5cc | ||
|
|
ba0aa0615a | ||
|
|
0d68e0f9cc | ||
|
|
61de037bba | ||
|
|
452e411cb3 | ||
|
|
e80d9c9256 | ||
|
|
1d6a3a530f | ||
|
|
b808a77247 | ||
|
|
af03fbb1dc | ||
|
|
5064f6c783 | ||
|
|
a8dc34fcc4 | ||
|
|
b51c65b0ac | ||
|
|
b16eb5a51a | ||
|
|
2ae423ebb1 | ||
|
|
6c54e0c5ac | ||
|
|
957f640afd | ||
|
|
6737620320 | ||
|
|
44d81a8ea1 | ||
|
|
d5329549cd | ||
|
|
3c32487d39 | ||
|
|
9fd03393f6 | ||
|
|
84b821eb51 | ||
|
|
fe9049c8b8 | ||
|
|
01cdb94474 | ||
|
|
28e893f45e | ||
|
|
eedb32ba20 | ||
|
|
7ede259dbc | ||
|
|
7c8bf64275 | ||
|
|
0a70f5a521 | ||
|
|
c8c39da853 | ||
|
|
3898713623 | ||
|
|
d4c69fcda2 | ||
|
|
8c2e6c33ce | ||
|
|
8247caa307 | ||
|
|
ef8760f48e | ||
|
|
bb7744af64 | ||
|
|
e4d9501f14 | ||
|
|
a579327186 | ||
|
|
cf38b24b58 | ||
|
|
60d0371368 | ||
|
|
e104e22acf | ||
|
|
e5c5d02299 | ||
|
|
ff3264e8ce | ||
|
|
c376fb0eda | ||
|
|
22dde4aef5 | ||
|
|
e2419ed134 | ||
|
|
f90c86fb37 | ||
|
|
8a282433c7 | ||
|
|
29a049b590 | ||
|
|
2efff3ead6 | ||
|
|
db832e7135 | ||
|
|
df3ab72c89 | ||
|
|
a502c8df0e | ||
|
|
281d246857 | ||
|
|
6b8ac7c7e3 | ||
|
|
d41ef1da89 | ||
|
|
cbf177c099 | ||
|
|
e7a4191beb | ||
|
|
f5731d9c42 | ||
|
|
8d572aabe5 | ||
|
|
2d37fc02dd | ||
|
|
214e379941 | ||
|
|
757c3cfc6f | ||
|
|
5867d55706 | ||
|
|
ffefab6b7a | ||
|
|
b45b2e99aa | ||
|
|
9d1cf7c1d9 | ||
|
|
960cf2505f | ||
|
|
d40c514520 | ||
|
|
de39fa7681 | ||
|
|
314deb896a | ||
|
|
e43be79dce | ||
|
|
86c7303399 | ||
|
|
72c5f5798c | ||
|
|
d50c766510 | ||
|
|
e68149e355 | ||
|
|
6f0026aec1 | ||
|
|
adba8f0129 | ||
|
|
bbe2516dc7 | ||
|
|
e62ba41186 | ||
|
|
f804745f1b | ||
|
|
53e4e66d0b | ||
|
|
5a7b652e2d | ||
|
|
12cda7f4bb | ||
|
|
ecfcfd7776 | ||
|
|
5c6cb80047 | ||
|
|
313c7954de | ||
|
|
e9f1133021 | ||
|
|
ca78e1e689 | ||
|
|
1b57692eb3 | ||
|
|
0b576513ae |
14 changed files with 415 additions and 122 deletions
|
|
@ -1 +0,0 @@
|
|||
anyterm-1.1.29.tbz2
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/anyterm-1.2.3.tar.xz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: anyterm
|
||||
# $Id: Makefile,v 1.1 2009/07/28 04:32:11 kevin Exp $
|
||||
NAME := anyterm
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
58
anyterm-1.1.29-boostclassic.patch
Normal file
58
anyterm-1.1.29-boostclassic.patch
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
diff -ur anyterm-1.1.29/libpbe/src/parse_http_request.cc anyterm-1.1.29.boostclassic/libpbe/src/parse_http_request.cc
|
||||
--- anyterm-1.1.29/libpbe/src/parse_http_request.cc 2008-11-09 15:18:30.000000000 +0100
|
||||
+++ anyterm-1.1.29.boostclassic/libpbe/src/parse_http_request.cc 2013-02-23 18:00:30.599265737 +0100
|
||||
@@ -18,11 +18,11 @@
|
||||
|
||||
#include "parse_http_request.hh"
|
||||
|
||||
-#include <boost/spirit.hpp>
|
||||
-#include <boost/spirit/actor/insert_at_actor.hpp>
|
||||
-#include <boost/spirit/dynamic/if.hpp>
|
||||
-#include <boost/spirit/utility/loops.hpp>
|
||||
-#include <boost/spirit/iterator/multi_pass.hpp>
|
||||
+#include <boost/spirit/include/classic.hpp>
|
||||
+#include <boost/spirit/include/classic_insert_at_actor.hpp>
|
||||
+#include <boost/spirit/include/classic_if.hpp>
|
||||
+#include <boost/spirit/include/classic_loops.hpp>
|
||||
+#include <boost/spirit/include/classic_multi_pass.hpp>
|
||||
|
||||
#include <boost/lexical_cast.hpp>
|
||||
#include <boost/scoped_array.hpp>
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
|
||||
using namespace std;
|
||||
-using namespace boost::spirit;
|
||||
+using namespace boost::spirit::classic;
|
||||
|
||||
|
||||
namespace pbe {
|
||||
diff -ur anyterm-1.1.29/libpbe/src/URI.cc anyterm-1.1.29.boostclassic/libpbe/src/URI.cc
|
||||
--- anyterm-1.1.29/libpbe/src/URI.cc 2008-11-09 15:16:16.000000000 +0100
|
||||
+++ anyterm-1.1.29.boostclassic/libpbe/src/URI.cc 2013-02-23 18:00:22.860322952 +0100
|
||||
@@ -18,11 +18,11 @@
|
||||
|
||||
#include "URI.hh"
|
||||
|
||||
-#include <boost/spirit.hpp>
|
||||
-#include <boost/spirit/actor/insert_at_actor.hpp>
|
||||
-#include <boost/spirit/dynamic/if.hpp>
|
||||
-#include <boost/spirit/utility/loops.hpp>
|
||||
-#include <boost/spirit/iterator/multi_pass.hpp>
|
||||
+#include <boost/spirit/include/classic.hpp>
|
||||
+#include <boost/spirit/include/classic_insert_at_actor.hpp>
|
||||
+#include <boost/spirit/include/classic_if.hpp>
|
||||
+#include <boost/spirit/include/classic_loops.hpp>
|
||||
+#include <boost/spirit/include/classic_multi_pass.hpp>
|
||||
|
||||
#include <boost/lexical_cast.hpp>
|
||||
#include <boost/scoped_array.hpp>
|
||||
@@ -30,7 +30,7 @@
|
||||
#include <map>
|
||||
|
||||
using namespace std;
|
||||
-using namespace boost::spirit;
|
||||
+using namespace boost::spirit::classic;
|
||||
|
||||
|
||||
namespace pbe {
|
||||
11
anyterm-boost_system.patch
Normal file
11
anyterm-boost_system.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- common.mk~ 2015-08-28 17:05:37.271247678 +0100
|
||||
+++ common.mk 2015-08-28 17:05:15.254181357 +0100
|
||||
@@ -49,7 +49,7 @@
|
||||
CC_COMPILE_FLAGS=$(COMPILE_FLAGS)
|
||||
|
||||
LINK_FLAGS=${GCC_FLAGS} ${DEBUG_FLAGS} \
|
||||
- -lutil
|
||||
+ -lutil -lboost_system
|
||||
|
||||
ifeq (${UNAME_S},OpenBSD)
|
||||
LINK_FLAGS+=-liconv
|
||||
24
anyterm-cmd
24
anyterm-cmd
|
|
@ -3,14 +3,32 @@
|
|||
# Simply prompt the user for a username and
|
||||
# ssh locally as that user
|
||||
|
||||
set -eo pipefail
|
||||
|
||||
while : ; do
|
||||
echo -n "Username: "
|
||||
read U
|
||||
if [[ -z "$U" ]]; then
|
||||
echo "Disconnecting."
|
||||
exit
|
||||
fi
|
||||
# Make sure it does not start with a "-" and only contains valid
|
||||
# username characters.
|
||||
if [[ "$U" =~ "^[A-Za-z0-9_][A-Za-z0-9_-]*\$" ]]; then
|
||||
ssh "$U@localhost"
|
||||
if [[ "$U" =~ ^[A-Za-z0-9_][A-Za-z0-9_-]*$ ]]; then
|
||||
cd ~
|
||||
|
||||
if [[ ! -e .ssh/known_hosts ]]; then
|
||||
mkdir -p --mode=700 .ssh
|
||||
for k in /etc/ssh/ssh_host_{rsa,dsa}_key.pub; do
|
||||
if [[ -r "$k" ]]; then
|
||||
echo -n "localhost.localdomain "
|
||||
cat "$k"
|
||||
fi
|
||||
done >.ssh/known_hosts
|
||||
fi
|
||||
|
||||
ssh -l "$U" localhost.localdomain" || :
|
||||
else
|
||||
echo "Bad username."
|
||||
echo "Bad username."
|
||||
fi
|
||||
done
|
||||
|
|
|
|||
28
anyterm-upstream-fixes-r18810.patch
Normal file
28
anyterm-upstream-fixes-r18810.patch
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
Index: src/SubProcess.cc
|
||||
===================================================================
|
||||
diff --git a/anyterm/trunk/src/SubProcess.cc b/anyterm/trunk/src/SubProcess.cc
|
||||
--- a/anyterm/trunk/src/SubProcess.cc (revision 13873)
|
||||
+++ b/anyterm/trunk/src/SubProcess.cc (revision 18810)
|
||||
@@ -141,7 +141,7 @@
|
||||
onOutput(s);
|
||||
}
|
||||
} RETHROW_MISC_EXCEPTIONS }
|
||||
- catch (pbe::IOError) {
|
||||
+ catch (pbe::IOError&) {
|
||||
onError("Subprocess terminated");
|
||||
return;
|
||||
}
|
||||
Index: common.mk
|
||||
===================================================================
|
||||
diff --git a/anyterm/trunk/common.mk b/anyterm/trunk/common.mk
|
||||
--- a/anyterm/trunk/common.mk (revision 13873)
|
||||
+++ b/anyterm/trunk/common.mk (revision 18810)
|
||||
@@ -42,7 +42,7 @@
|
||||
|
||||
# If you need to add additional include directories, e.g. if your Boost libraries
|
||||
# are somewhere unexpected, add them to CPP_FLAGS below e.g. CPP_FLAGS=-I/path/to/boost
|
||||
-CPP_FLAGS=--std=c++14
|
||||
+CPP_FLAGS=--std=c++17
|
||||
|
||||
ifeq (${UNAME_S},SunOS)
|
||||
GCC_FLAGS=-D_REENTRANT
|
||||
13
anyterm.service
Normal file
13
anyterm.service
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
[Unit]
|
||||
Description=Anyterm Web Based Terminal Emulator
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
PIDFile=/var/run/anytermd.pid
|
||||
ExecStart=/usr/sbin/anytermd -c /usr/libexec/anyterm/anyterm-cmd -s UTF8 --user anyterm --port 81 --local-only
|
||||
RemainAfterExit=yes
|
||||
PrivateTmp=true
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
152
anyterm.spec
152
anyterm.spec
|
|
@ -1,38 +1,42 @@
|
|||
Name: anyterm
|
||||
Version: 1.1.29
|
||||
Release: 8%{?dist}
|
||||
Version: 1.2.3
|
||||
Release: %autorelease
|
||||
Summary: A web-based terminal emulator
|
||||
|
||||
Group: Applications/Internet
|
||||
License: GPLv2+
|
||||
URL: http://anyterm.org
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://anyterm.org
|
||||
|
||||
Source0: http://anyterm.org/download/anyterm-1.1.29.tbz2
|
||||
# The source for this package was pulled from upstream's vcs. Use the
|
||||
# following commands to generate the tarball:
|
||||
# svn export http://svn.anyterm.org/anyterm/tags/releases/1.2/1.2.3 anyterm-1.2.3
|
||||
# tar -jcf anyterm-1.2.3.tar.xz anyterm-1.2.3
|
||||
Source0: anyterm-1.2.3.tar.xz
|
||||
Source1: anyterm-cmd
|
||||
Source2: anytermd.init
|
||||
Source3: anytermd.sysconfig
|
||||
Source4: anyterm.conf
|
||||
Source5: anyterm.service
|
||||
Source6: anyterm.sysusers.conf
|
||||
Source7: anyterm.tmpfiles.conf
|
||||
|
||||
# http://anyterm.org/1.1/install.html#secid2252601
|
||||
Patch0: anyterm-change-url-prefix.patch
|
||||
# svn diff --git -r 13873:18810
|
||||
Patch1: anyterm-upstream-fixes-r18810.patch
|
||||
|
||||
# http://anyterm.org/forums/viewtopic.php?id=581
|
||||
Patch1: anyterm-libpbe-fix.patch
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
||||
BuildRequires: boost-devel
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: boost-devel
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: prelink
|
||||
Requires(pre): shadow-utils
|
||||
Requires(post): chkconfig
|
||||
Requires(preun): chkconfig
|
||||
Requires(preun): initscripts
|
||||
Requires(postun): initscripts
|
||||
BuildRequires: systemd
|
||||
BuildRequires: make
|
||||
BuildRequires: systemd-rpm-macros
|
||||
Requires(post): systemd
|
||||
Requires(preun): systemd
|
||||
Requires(postun): systemd
|
||||
%{?sysusers_requires_compat}
|
||||
|
||||
|
||||
%package httpd
|
||||
Summary: Httpd proxy configuration for anyterm
|
||||
Group: Applications/Internet
|
||||
License: GPLv2+
|
||||
License: GPL-2.0-or-later
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: httpd
|
||||
|
||||
|
|
@ -40,7 +44,7 @@ Requires: httpd
|
|||
%description
|
||||
The Anyterm web-based terminal emulator, permits terminal and/or arbitrary
|
||||
command access via http. The anyterm daemon can be configured to run any
|
||||
arbitrary command, redirecting all standard input / output / error to
|
||||
arbitrary command, redirecting all standard input / output / error to
|
||||
and from any javascript-enabled web browser in real time.
|
||||
|
||||
%description httpd
|
||||
|
|
@ -48,99 +52,57 @@ The httpd configuration necessary to proxy anyterm.
|
|||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p0
|
||||
cd libpbe/
|
||||
%patch1 -p0
|
||||
%patch -P0 -p0
|
||||
%patch -P1 -p3
|
||||
|
||||
%build
|
||||
export CFLAGS="$RPM_OPT_FLAGS"
|
||||
export CXXFLAGS="$RPM_OPT_FLAGS"
|
||||
%{__make} %{?_smp_mflags} CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS"
|
||||
%{__gzip} anytermd.1
|
||||
execstack -c anytermd
|
||||
make %{?_smp_mflags} CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" OPTIMISE_FLAGS="$CXXFLAGS"
|
||||
gzip anytermd.1
|
||||
|
||||
%install
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%{__install} -Dp -m0755 anytermd %{buildroot}%{_sbindir}/anytermd
|
||||
%{__install} -Dp -m0644 anytermd.1.gz %{buildroot}%{_mandir}/man1/anytermd.1.gz
|
||||
%{__install} -Dp -m0755 %{SOURCE1} %{buildroot}%{_libexecdir}/%{name}/anyterm-cmd
|
||||
%{__install} -Dp -m0755 %{SOURCE2} %{buildroot}%{_initrddir}/anyterm
|
||||
%{__install} -Dp -m0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/anyterm
|
||||
%{__install} -Dp -m0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/httpd/conf.d/anyterm.conf
|
||||
|
||||
%{__mkdir} -p %{buildroot}%{_datadir}/anyterm/
|
||||
for f in browser/*.{html,css,js,png,gif}; do
|
||||
%{__install} -m644 "$f" %{buildroot}%{_datadir}/anyterm/
|
||||
done
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
install -Dp -m0755 anytermd %{buildroot}%{_sbindir}/anytermd
|
||||
install -Dp -m0644 anytermd.1.gz %{buildroot}%{_mandir}/man1/anytermd.1.gz
|
||||
install -Dp -m0755 %{SOURCE1} %{buildroot}%{_libexecdir}/%{name}/anyterm-cmd
|
||||
install -Dp -m0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/httpd/conf.d/anyterm.conf
|
||||
install -Dp -m0644 %{SOURCE5} %{buildroot}%{_unitdir}/%{name}.service
|
||||
install -Dp -m0644 %{SOURCE6} %{buildroot}%{_sysusersdir}/%{name}.conf
|
||||
install -Dp -m0644 %{SOURCE7} %{buildroot}%{_tmpfilesdir}/%{name}.conf
|
||||
install -Dp -m0644 browser/anyterm.css %{buildroot}%{_datadir}/%{name}/anyterm.css
|
||||
install -Dp -m0644 browser/anyterm.html %{buildroot}%{_datadir}/%{name}/anyterm.html
|
||||
install -Dp -m0644 browser/anyterm.js %{buildroot}%{_datadir}/%{name}/anyterm.js
|
||||
install -Dp -m0644 browser/copy.gif %{buildroot}%{_datadir}/%{name}/copy.gif
|
||||
install -Dp -m0644 browser/copy.png %{buildroot}%{_datadir}/%{name}/copy.png
|
||||
install -Dp -m0644 browser/paste.gif %{buildroot}%{_datadir}/%{name}/paste.gif
|
||||
install -Dp -m0644 browser/paste.png %{buildroot}%{_datadir}/%{name}/paste.png
|
||||
install -Dp -m0644 browser/resizer.png %{buildroot}%{_datadir}/%{name}/resizer.png
|
||||
|
||||
%pre
|
||||
# create anyterm group / user
|
||||
getent group anyterm >/dev/null || \
|
||||
/usr/sbin/groupadd -r anyterm
|
||||
getent passwd anyterm > /dev/null || \
|
||||
/usr/sbin/useradd -r -s /sbin/nologin -d /dev/null \
|
||||
-M -c 'Anyterm user' -g anyterm anyterm
|
||||
exit 0
|
||||
%sysusers_create_compat %{SOURCE6}
|
||||
|
||||
%post
|
||||
# adds the proper /etc/rc*.d links for the script
|
||||
/sbin/chkconfig --add anyterm
|
||||
%systemd_post %{name}.service
|
||||
|
||||
%preun
|
||||
if [ $1 = 0 ] ; then
|
||||
/sbin/service anyterm stop >/dev/null 2>&1
|
||||
/sbin/chkconfig --del anyterm
|
||||
fi
|
||||
%systemd_preun %{name}.service
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart %{name}.service
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{_sbindir}/anytermd
|
||||
%{_libexecdir}/anyterm/
|
||||
%{_mandir}/man1/anytermd.1.gz
|
||||
%{_initrddir}/anyterm
|
||||
%{_datadir}/anyterm/
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/anyterm
|
||||
%{_datadir}/%{name}/
|
||||
%{_unitdir}/%{name}.service
|
||||
%ghost %attr(0755,%{name},%{name}) %dir %{_rundir}/%{name}
|
||||
%{_tmpfilesdir}/%{name}.conf
|
||||
%doc LICENSE
|
||||
%{_sysusersdir}/%{name}.conf
|
||||
|
||||
%files httpd
|
||||
%defattr(-,root,root,-)
|
||||
%config(noreplace) %{_sysconfdir}/httpd/conf.d/anyterm.conf
|
||||
|
||||
%changelog
|
||||
* Wed Jul 15 2009 <mmorsi@redhat.com> - 1.1.29-8
|
||||
- correct anyterm dependency for anyterm-httpd subpkg
|
||||
- removed useradd/group add stdout redirection
|
||||
- def attr for anyterm-httpd subpkg
|
||||
- slight rewording and other trivial tasks
|
||||
|
||||
* Tue Jul 14 2009 <mmorsi@redhat.com> - 1.1.29-7
|
||||
- removed useradd/group add stderr redirection
|
||||
- used all macros where i could
|
||||
- create httpd subpackage for anyterm/httpd integration
|
||||
|
||||
* Mon Jul 13 2009 <mmorsi@redhat.com> - 1.1.29-6
|
||||
- fixed location of %%doc macro, and resolved other
|
||||
macro issues
|
||||
- moved anyterm-cmd from bindir to libexecdir/anyterm
|
||||
|
||||
* Thu Jul 09 2009 <mmorsi@redhat.com> - 1.1.29-5
|
||||
- added CFLAGS / CXXFLAGS to pick up RPM_OPT_FLAGS
|
||||
|
||||
* Tue Jul 07 2009 <mmorsi@redhat.com> - 1.1.29-4
|
||||
- removed pbuild
|
||||
- removed executable stack (requires prelink/execstack)
|
||||
|
||||
* Thu Apr 09 2009 <mmorsi@redhat.com> - 1.1.29-3
|
||||
- updated spec / init based on rpmlint output
|
||||
|
||||
* Wed Apr 08 2009 <mmorsi@redhat.com> - 1.1.29-2
|
||||
- Serve static content via apache
|
||||
- Use 1.1.29 release and newly added patches
|
||||
|
||||
* Mon Mar 16 2009 <mmorsi@redhat.com> - 1.1.29-1
|
||||
- Initial checkout and build.
|
||||
%autochangelog
|
||||
|
|
|
|||
1
anyterm.sysusers.conf
Normal file
1
anyterm.sysusers.conf
Normal file
|
|
@ -0,0 +1 @@
|
|||
u anyterm - 'Anyterm service' /run/anyterm -
|
||||
1
anyterm.tmpfiles.conf
Normal file
1
anyterm.tmpfiles.conf
Normal file
|
|
@ -0,0 +1 @@
|
|||
d /run/anyterm 0755 root anyterm
|
||||
223
changelog
Normal file
223
changelog
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
* Tue Feb 11 2025 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.2.3-23
|
||||
- Add sysusers.d config file to allow rpm to create users/groups automatically
|
||||
|
||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Thu Jul 25 2024 Miroslav Suchý <msuchy@redhat.com> - 1.2.3-21
|
||||
- convert license to SPDX
|
||||
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Jan 17 2024 Jonathan Wakely <jwakely@redhat.com> - 1.2.3-17
|
||||
- Rebuilt for Boost 1.83
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Mon Feb 20 2023 Jonathan Wakely <jwakely@redhat.com> - 1.2.3-15
|
||||
- Rebuilt for Boost 1.81
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed May 04 2022 Thomas Rodgers <trodgers@redhat.com> - 1.2.3-12
|
||||
- Rebuilt for Boost 1.78
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Aug 06 2021 Jonathan Wakely <jwakely@redhat.com> - 1.2.3-10
|
||||
- Rebuilt for Boost 1.76
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.2.3-8
|
||||
- Rebuilt for updated systemd-rpm-macros
|
||||
See https://pagure.io/fesco/issue/2583.
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Jan 22 2021 Jonathan Wakely <jwakely@redhat.com> - 1.2.3-6
|
||||
- Rebuilt for Boost 1.75
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-5
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu May 28 2020 Jonathan Wakely <jwakely@redhat.com> - 1.2.3-3
|
||||
- Rebuilt for Boost 1.73
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sun Nov 17 2019 Alexander Boström <abo@root.snowtree.se> - 1.2.3-1
|
||||
- upgrade to 1.2.3
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-47
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-46
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jan 24 2019 Jonathan Wakely <jwakely@redhat.com> - 1.1.29-45
|
||||
- Rebuilt for Boost 1.69
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-44
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-43
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Tue Jan 23 2018 Jonathan Wakely <jwakely@redhat.com> - 1.1.29-42
|
||||
- Rebuilt for Boost 1.66
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-41
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-40
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Jul 19 2017 Jonathan Wakely <jwakely@redhat.com> - 1.1.29-39
|
||||
- Rebuilt for s390x binutils bug
|
||||
|
||||
* Mon Jul 03 2017 Jonathan Wakely <jwakely@redhat.com> - 1.1.29-38
|
||||
- Rebuilt for Boost 1.64
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-37
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Tue Feb 23 2016 Yaakov Selkowitz <yselkowi@redhat.com> - 1.1.29-36
|
||||
- Specify C++98 usage (#1307317)
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-35
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Jan 14 2016 Jonathan Wakely <jwakely@redhat.com> - 1.1.29-34
|
||||
- Rebuilt for Boost 1.60
|
||||
|
||||
* Fri Aug 28 2015 Jonathan Wakely <jwakely@redhat.com> 1.1.29-33
|
||||
- Patched and rebuilt for Boost 1.59
|
||||
|
||||
* Wed Aug 05 2015 Jonathan Wakely <jwakely@redhat.com> 1.1.29-32
|
||||
- Rebuilt for Boost 1.58
|
||||
|
||||
* Sat Aug 01 2015 Alexander Boström <abo@root.snowtree.se> - 1.1.29-31
|
||||
- fix build without prelink
|
||||
|
||||
* Sat Aug 01 2015 Alexander Boström <abo@root.snowtree.se> - 1.1.29-30
|
||||
- remove prelink buildreq
|
||||
|
||||
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.29-29
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
|
||||
|
||||
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 1.1.29-28
|
||||
- rebuild for Boost 1.58
|
||||
|
||||
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.29-27
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.1.29-26
|
||||
- Rebuilt for GCC 5 C++11 ABI change
|
||||
|
||||
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 1.1.29-25
|
||||
- Rebuild for boost 1.57.0
|
||||
|
||||
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.29-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Mon Jun 30 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.1.29-23
|
||||
- No prelink on aarch64 ppc64le
|
||||
- Cleanup spec and update systemd scriptlets
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.29-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Thu May 22 2014 Petr Machata <pmachata@redhat.com> - 1.1.29-21
|
||||
- Rebuild for boost 1.55.0
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.29-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 1.1.29-19
|
||||
- Rebuild for boost 1.54.0
|
||||
|
||||
* Sat Feb 23 2013 Alexander Boström <abo@root.snowtree.se> - 1.1.29-18
|
||||
- Add patch to build with boost 1.53 (rhbz #913877)
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.29-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.29-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jun 2 2012 Alexander Boström <abo@root.snowtree.se> - 1.1.29-15
|
||||
- Really create the home directory.
|
||||
|
||||
* Fri Jun 1 2012 Alexander Boström <abo@root.snowtree.se> - 1.1.29-14
|
||||
- Actually create the home directory on first install.
|
||||
|
||||
* Fri Jun 1 2012 Alexander Boström <abo@root.snowtree.se> - 1.1.29-13
|
||||
- Fix spec file typo.
|
||||
- Create a home directory for the Anyterm user.
|
||||
|
||||
* Tue May 22 2012 Alexander Boström <abo@root.snowtree.se> - 1.1.29-12
|
||||
- Remove SysV script, add systemd service file.
|
||||
- Fix anyterm-cmd.
|
||||
|
||||
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.29-11
|
||||
- Rebuilt for c++ ABI breakage
|
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.29-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.29-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Jul 15 2009 <mmorsi@redhat.com> - 1.1.29-8
|
||||
- correct anyterm dependency for anyterm-httpd subpkg
|
||||
- removed useradd/group add stdout redirection
|
||||
- def attr for anyterm-httpd subpkg
|
||||
- slight rewording and other trivial tasks
|
||||
|
||||
* Tue Jul 14 2009 <mmorsi@redhat.com> - 1.1.29-7
|
||||
- removed useradd/group add stderr redirection
|
||||
- used all macros where i could
|
||||
- create httpd subpackage for anyterm/httpd integration
|
||||
|
||||
* Mon Jul 13 2009 <mmorsi@redhat.com> - 1.1.29-6
|
||||
- fixed location of %%doc macro, and resolved other
|
||||
macro issues
|
||||
- moved anyterm-cmd from bindir to libexecdir/anyterm
|
||||
|
||||
* Thu Jul 09 2009 <mmorsi@redhat.com> - 1.1.29-5
|
||||
- added CFLAGS / CXXFLAGS to pick up RPM_OPT_FLAGS
|
||||
|
||||
* Tue Jul 07 2009 <mmorsi@redhat.com> - 1.1.29-4
|
||||
- removed pbuild
|
||||
- removed executable stack (requires prelink/execstack)
|
||||
|
||||
* Thu Apr 09 2009 <mmorsi@redhat.com> - 1.1.29-3
|
||||
- updated spec / init based on rpmlint output
|
||||
|
||||
* Wed Apr 08 2009 <mmorsi@redhat.com> - 1.1.29-2
|
||||
- Serve static content via apache
|
||||
- Use 1.1.29 release and newly added patches
|
||||
|
||||
* Mon Mar 16 2009 <mmorsi@redhat.com> - 1.1.29-1
|
||||
- Initial checkout and build.
|
||||
|
|
@ -1 +0,0 @@
|
|||
anyterm-1_1_29-8_fc10:HEAD:anyterm-1.1.29-8.fc10.src.rpm:1248795041
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
84fe7f3b4f516815901d1f545e79f13d anyterm-1.1.29.tbz2
|
||||
SHA512 (anyterm-1.2.3.tar.xz) = 640e6993d6f1171a1f52e2a253e5791ed21b07dbfabc405443d516e92eef6cfc9248ce09f2f882d099429311821bd908dec40b06db5582c7277e8ca80ad66501
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue