diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..d74533c --- /dev/null +++ b/.cvsignore @@ -0,0 +1 @@ +anyterm-1.1.29.tbz2 diff --git a/.gitignore b/.gitignore deleted file mode 100644 index f8cbe30..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/anyterm-1.2.3.tar.xz diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5bc9ab5 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: anyterm +# $Id$ +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 $$/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) diff --git a/anyterm-1.1.29-boostclassic.patch b/anyterm-1.1.29-boostclassic.patch deleted file mode 100644 index 22eb1ad..0000000 --- a/anyterm-1.1.29-boostclassic.patch +++ /dev/null @@ -1,58 +0,0 @@ -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 --#include --#include --#include --#include -+#include -+#include -+#include -+#include -+#include - - #include - #include -@@ -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 --#include --#include --#include --#include -+#include -+#include -+#include -+#include -+#include - - #include - #include -@@ -30,7 +30,7 @@ - #include - - using namespace std; --using namespace boost::spirit; -+using namespace boost::spirit::classic; - - - namespace pbe { diff --git a/anyterm-boost_system.patch b/anyterm-boost_system.patch deleted file mode 100644 index 77ce6d6..0000000 --- a/anyterm-boost_system.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- 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 diff --git a/anyterm-cmd b/anyterm-cmd index d20b6e7..751624f 100644 --- a/anyterm-cmd +++ b/anyterm-cmd @@ -3,32 +3,14 @@ # 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 - 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" || : + if [[ "$U" =~ "^[A-Za-z0-9_][A-Za-z0-9_-]*\$" ]]; then + ssh "$U@localhost" else - echo "Bad username." + echo "Bad username." fi done diff --git a/anyterm-upstream-fixes-r18810.patch b/anyterm-upstream-fixes-r18810.patch deleted file mode 100644 index 296d395..0000000 --- a/anyterm-upstream-fixes-r18810.patch +++ /dev/null @@ -1,28 +0,0 @@ -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 diff --git a/anyterm.service b/anyterm.service deleted file mode 100644 index f206715..0000000 --- a/anyterm.service +++ /dev/null @@ -1,13 +0,0 @@ -[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 diff --git a/anyterm.spec b/anyterm.spec index 4c122c1..3d22d4e 100644 --- a/anyterm.spec +++ b/anyterm.spec @@ -1,42 +1,38 @@ Name: anyterm -Version: 1.2.3 -Release: %autorelease +Version: 1.1.29 +Release: 8%{?dist} Summary: A web-based terminal emulator -License: GPL-2.0-or-later -URL: https://anyterm.org +Group: Applications/Internet +License: GPLv2+ +URL: http://anyterm.org -# 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 +Source0: http://anyterm.org/download/anyterm-1.1.29.tbz2 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 -BuildRequires: gcc-c++ -BuildRequires: boost-devel +# http://anyterm.org/forums/viewtopic.php?id=581 +Patch1: anyterm-libpbe-fix.patch + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot +BuildRequires: boost-devel BuildRequires: zlib-devel -BuildRequires: systemd -BuildRequires: make -BuildRequires: systemd-rpm-macros -Requires(post): systemd -Requires(preun): systemd -Requires(postun): systemd -%{?sysusers_requires_compat} - +BuildRequires: prelink +Requires(pre): shadow-utils +Requires(post): chkconfig +Requires(preun): chkconfig +Requires(preun): initscripts +Requires(postun): initscripts %package httpd Summary: Httpd proxy configuration for anyterm -License: GPL-2.0-or-later +Group: Applications/Internet +License: GPLv2+ Requires: %{name} = %{version}-%{release} Requires: httpd @@ -44,7 +40,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 @@ -52,57 +48,99 @@ The httpd configuration necessary to proxy anyterm. %prep %setup -q -%patch -P0 -p0 -%patch -P1 -p3 +%patch0 -p0 +cd libpbe/ +%patch1 -p0 %build export CFLAGS="$RPM_OPT_FLAGS" export CXXFLAGS="$RPM_OPT_FLAGS" -make %{?_smp_mflags} CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" OPTIMISE_FLAGS="$CXXFLAGS" -gzip anytermd.1 +%{__make} %{?_smp_mflags} CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" +%{__gzip} anytermd.1 +execstack -c anytermd %install -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 +%{__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} %pre -%sysusers_create_compat %{SOURCE6} +# 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 %post -%systemd_post %{name}.service +# adds the proper /etc/rc*.d links for the script +/sbin/chkconfig --add anyterm %preun -%systemd_preun %{name}.service - -%postun -%systemd_postun_with_restart %{name}.service +if [ $1 = 0 ] ; then + /sbin/service anyterm stop >/dev/null 2>&1 + /sbin/chkconfig --del anyterm +fi %files +%defattr(-,root,root,-) %{_sbindir}/anytermd %{_libexecdir}/anyterm/ %{_mandir}/man1/anytermd.1.gz -%{_datadir}/%{name}/ -%{_unitdir}/%{name}.service -%ghost %attr(0755,%{name},%{name}) %dir %{_rundir}/%{name} -%{_tmpfilesdir}/%{name}.conf +%{_initrddir}/anyterm +%{_datadir}/anyterm/ +%config(noreplace) %{_sysconfdir}/sysconfig/anyterm %doc LICENSE -%{_sysusersdir}/%{name}.conf %files httpd +%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/httpd/conf.d/anyterm.conf %changelog -%autochangelog +* Wed Jul 15 2009 - 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 - 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 - 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 - 1.1.29-5 +- added CFLAGS / CXXFLAGS to pick up RPM_OPT_FLAGS + +* Tue Jul 07 2009 - 1.1.29-4 +- removed pbuild +- removed executable stack (requires prelink/execstack) + +* Thu Apr 09 2009 - 1.1.29-3 +- updated spec / init based on rpmlint output + +* Wed Apr 08 2009 - 1.1.29-2 +- Serve static content via apache +- Use 1.1.29 release and newly added patches + +* Mon Mar 16 2009 - 1.1.29-1 +- Initial checkout and build. diff --git a/anyterm.sysusers.conf b/anyterm.sysusers.conf deleted file mode 100644 index c107e4c..0000000 --- a/anyterm.sysusers.conf +++ /dev/null @@ -1 +0,0 @@ -u anyterm - 'Anyterm service' /run/anyterm - diff --git a/anyterm.tmpfiles.conf b/anyterm.tmpfiles.conf deleted file mode 100644 index c86af30..0000000 --- a/anyterm.tmpfiles.conf +++ /dev/null @@ -1 +0,0 @@ -d /run/anyterm 0755 root anyterm diff --git a/changelog b/changelog deleted file mode 100644 index 65bed52..0000000 --- a/changelog +++ /dev/null @@ -1,223 +0,0 @@ -* Tue Feb 11 2025 Zbigniew Jędrzejewski-Szmek - 1.2.3-23 -- Add sysusers.d config file to allow rpm to create users/groups automatically - -* Thu Jan 16 2025 Fedora Release Engineering - 1.2.3-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Thu Jul 25 2024 Miroslav Suchý - 1.2.3-21 -- convert license to SPDX - -* Wed Jul 17 2024 Fedora Release Engineering - 1.2.3-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Mon Jan 22 2024 Fedora Release Engineering - 1.2.3-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Fri Jan 19 2024 Fedora Release Engineering - 1.2.3-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Wed Jan 17 2024 Jonathan Wakely - 1.2.3-17 -- Rebuilt for Boost 1.83 - -* Wed Jul 19 2023 Fedora Release Engineering - 1.2.3-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Mon Feb 20 2023 Jonathan Wakely - 1.2.3-15 -- Rebuilt for Boost 1.81 - -* Wed Jan 18 2023 Fedora Release Engineering - 1.2.3-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Wed Jul 20 2022 Fedora Release Engineering - 1.2.3-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Wed May 04 2022 Thomas Rodgers - 1.2.3-12 -- Rebuilt for Boost 1.78 - -* Wed Jan 19 2022 Fedora Release Engineering - 1.2.3-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Aug 06 2021 Jonathan Wakely - 1.2.3-10 -- Rebuilt for Boost 1.76 - -* Wed Jul 21 2021 Fedora Release Engineering - 1.2.3-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek - 1.2.3-8 -- Rebuilt for updated systemd-rpm-macros - See https://pagure.io/fesco/issue/2583. - -* Tue Jan 26 2021 Fedora Release Engineering - 1.2.3-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Fri Jan 22 2021 Jonathan Wakely - 1.2.3-6 -- Rebuilt for Boost 1.75 - -* Sat Aug 01 2020 Fedora Release Engineering - 1.2.3-5 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Mon Jul 27 2020 Fedora Release Engineering - 1.2.3-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Thu May 28 2020 Jonathan Wakely - 1.2.3-3 -- Rebuilt for Boost 1.73 - -* Tue Jan 28 2020 Fedora Release Engineering - 1.2.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Sun Nov 17 2019 Alexander Boström - 1.2.3-1 -- upgrade to 1.2.3 - -* Wed Jul 24 2019 Fedora Release Engineering - 1.1.29-47 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Thu Jan 31 2019 Fedora Release Engineering - 1.1.29-46 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Thu Jan 24 2019 Jonathan Wakely - 1.1.29-45 -- Rebuilt for Boost 1.69 - -* Thu Jul 12 2018 Fedora Release Engineering - 1.1.29-44 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Fedora Release Engineering - 1.1.29-43 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Tue Jan 23 2018 Jonathan Wakely - 1.1.29-42 -- Rebuilt for Boost 1.66 - -* Wed Aug 02 2017 Fedora Release Engineering - 1.1.29-41 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 1.1.29-40 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Wed Jul 19 2017 Jonathan Wakely - 1.1.29-39 -- Rebuilt for s390x binutils bug - -* Mon Jul 03 2017 Jonathan Wakely - 1.1.29-38 -- Rebuilt for Boost 1.64 - -* Fri Feb 10 2017 Fedora Release Engineering - 1.1.29-37 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Tue Feb 23 2016 Yaakov Selkowitz - 1.1.29-36 -- Specify C++98 usage (#1307317) - -* Wed Feb 03 2016 Fedora Release Engineering - 1.1.29-35 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Thu Jan 14 2016 Jonathan Wakely - 1.1.29-34 -- Rebuilt for Boost 1.60 - -* Fri Aug 28 2015 Jonathan Wakely 1.1.29-33 -- Patched and rebuilt for Boost 1.59 - -* Wed Aug 05 2015 Jonathan Wakely 1.1.29-32 -- Rebuilt for Boost 1.58 - -* Sat Aug 01 2015 Alexander Boström - 1.1.29-31 -- fix build without prelink - -* Sat Aug 01 2015 Alexander Boström - 1.1.29-30 -- remove prelink buildreq - -* Wed Jul 29 2015 Fedora Release Engineering - 1.1.29-29 -- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 - -* Wed Jul 22 2015 David Tardon - 1.1.29-28 -- rebuild for Boost 1.58 - -* Tue Jun 16 2015 Fedora Release Engineering - 1.1.29-27 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat May 02 2015 Kalev Lember - 1.1.29-26 -- Rebuilt for GCC 5 C++11 ABI change - -* Tue Jan 27 2015 Petr Machata - 1.1.29-25 -- Rebuild for boost 1.57.0 - -* Fri Aug 15 2014 Fedora Release Engineering - 1.1.29-24 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Mon Jun 30 2014 Peter Robinson 1.1.29-23 -- No prelink on aarch64 ppc64le -- Cleanup spec and update systemd scriptlets - -* Sat Jun 07 2014 Fedora Release Engineering - 1.1.29-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Thu May 22 2014 Petr Machata - 1.1.29-21 -- Rebuild for boost 1.55.0 - -* Sat Aug 03 2013 Fedora Release Engineering - 1.1.29-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Tue Jul 30 2013 Petr Machata - 1.1.29-19 -- Rebuild for boost 1.54.0 - -* Sat Feb 23 2013 Alexander Boström - 1.1.29-18 -- Add patch to build with boost 1.53 (rhbz #913877) - -* Wed Feb 13 2013 Fedora Release Engineering - 1.1.29-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Wed Jul 18 2012 Fedora Release Engineering - 1.1.29-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jun 2 2012 Alexander Boström - 1.1.29-15 -- Really create the home directory. - -* Fri Jun 1 2012 Alexander Boström - 1.1.29-14 -- Actually create the home directory on first install. - -* Fri Jun 1 2012 Alexander Boström - 1.1.29-13 -- Fix spec file typo. -- Create a home directory for the Anyterm user. - -* Tue May 22 2012 Alexander Boström - 1.1.29-12 -- Remove SysV script, add systemd service file. -- Fix anyterm-cmd. - -* Tue Feb 28 2012 Fedora Release Engineering - 1.1.29-11 -- Rebuilt for c++ ABI breakage - -* Thu Jan 12 2012 Fedora Release Engineering - 1.1.29-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Mon Feb 07 2011 Fedora Release Engineering - 1.1.29-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Jul 15 2009 - 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 - 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 - 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 - 1.1.29-5 -- added CFLAGS / CXXFLAGS to pick up RPM_OPT_FLAGS - -* Tue Jul 07 2009 - 1.1.29-4 -- removed pbuild -- removed executable stack (requires prelink/execstack) - -* Thu Apr 09 2009 - 1.1.29-3 -- updated spec / init based on rpmlint output - -* Wed Apr 08 2009 - 1.1.29-2 -- Serve static content via apache -- Use 1.1.29 release and newly added patches - -* Mon Mar 16 2009 - 1.1.29-1 -- Initial checkout and build. diff --git a/import.log b/import.log new file mode 100644 index 0000000..f300d90 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +anyterm-1_1_29-8_fc10:HEAD:anyterm-1.1.29-8.fc10.src.rpm:1248795041 diff --git a/sources b/sources index 5a4a85b..3e6c646 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (anyterm-1.2.3.tar.xz) = 640e6993d6f1171a1f52e2a253e5791ed21b07dbfabc405443d516e92eef6cfc9248ce09f2f882d099429311821bd908dec40b06db5582c7277e8ca80ad66501 +84fe7f3b4f516815901d1f545e79f13d anyterm-1.1.29.tbz2